// Copyright 2017 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_CLIENT_INPUT_KEYBOARD_INPUT_STRATEGY_H_ #define REMOTING_CLIENT_INPUT_KEYBOARD_INPUT_STRATEGY_H_ #include <stdint.h> #include <string> #include "base/containers/queue.h" namespace remoting { struct KeyEvent { … }; // This is an interface used by |KeyboardInterpreter| to customize how keyboard // input is handled. class KeyboardInputStrategy { … }; } // namespace remoting #endif // REMOTING_CLIENT_INPUT_KEYBOARD_INPUT_STRATEGY_H_