chromium/components/exo/wayland/zcr_keyboard_extension.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_EXO_WAYLAND_ZCR_KEYBOARD_EXTENSION_H_
#define COMPONENTS_EXO_WAYLAND_ZCR_KEYBOARD_EXTENSION_H_

#include <stdint.h>

#include "base/memory/raw_ptr.h"

struct wl_client;

namespace exo {
namespace wayland {
class SerialTracker;

struct WaylandKeyboardExtension {
  explicit WaylandKeyboardExtension(SerialTracker* serial_tracker)
      : serial_tracker(serial_tracker) {}
  WaylandKeyboardExtension(const WaylandKeyboardExtension&) = delete;
  WaylandKeyboardExtension& operator=(const WaylandKeyboardExtension&) = delete;

  // Owned by Server, which always outlives zcr_keyboard_extension.
  const raw_ptr<SerialTracker> serial_tracker;
};

void bind_keyboard_extension(wl_client* client,
                             void* data,
                             uint32_t version,
                             uint32_t id);

}  // namespace wayland
}  // namespace exo

#endif  // COMPONENTS_EXO_WAYLAND_ZCR_KEYBOARD_EXTENSION_H_