chromium/remoting/host/linux/x11_keyboard.h

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

#ifndef REMOTING_HOST_LINUX_X11_KEYBOARD_H_
#define REMOTING_HOST_LINUX_X11_KEYBOARD_H_

#include <stdint.h>

#include <vector>

namespace remoting {

// An interface for accessing the keyboard and changing the keyboard layout.
// An implementation is allowed to delay processing a request until Flush() or
// Sync() is called.
class X11Keyboard {};

}  // namespace remoting

#endif  // REMOTING_HOST_LINUX_X11_KEYBOARD_H_