Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef REMOTING_CLIENT_INPUT_TEXT_KEYBOARD_INPUT_STRATEGY_H_ | |
| 6 #define REMOTING_CLIENT_INPUT_TEXT_KEYBOARD_INPUT_STRATEGY_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "remoting/client/chromoting_session.h" | |
|
Yuwei
2017/05/17 21:41:20
You can remove this include now.
nicholss
2017/05/22 18:52:44
Done.
| |
| 10 #include "remoting/client/input/keyboard_input_strategy.h" | |
| 11 | |
| 12 namespace remoting { | |
| 13 | |
| 14 class ClientInputInjector; | |
| 15 | |
| 16 class TextKeyboardInputStrategy : public KeyboardInputStrategy { | |
| 17 public: | |
| 18 explicit TextKeyboardInputStrategy(ClientInputInjector* input_injector); | |
| 19 ~TextKeyboardInputStrategy() override; | |
| 20 | |
| 21 // KeyboardInputStrategy overrides. | |
| 22 void HandleTextEvent(const std::string& text, uint8_t modifiers) override; | |
| 23 void HandleDeleteEvent(uint8_t modifiers) override; | |
| 24 | |
| 25 private: | |
| 26 std::queue<KeyEvent> ConvertDeleteEvent(uint8_t modifiers); | |
| 27 | |
| 28 ClientInputInjector* input_injector_; | |
| 29 | |
| 30 DISALLOW_COPY_AND_ASSIGN(TextKeyboardInputStrategy); | |
| 31 }; | |
| 32 | |
| 33 } // namespace remoting | |
| 34 #endif // REMOTING_CLIENT_INPUT_TEXT_KEYBOARD_INPUT_STRATEGY_H_ | |
| OLD | NEW |