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_KEYBOARD_INTERPRETER_H_ | |
| 6 #define REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "remoting/client/chromoting_session.h" | |
| 12 | |
| 13 namespace remoting { | |
| 14 | |
| 15 class KeyboardInputStrategy; | |
| 16 | |
| 17 // This is a class for interpreting raw keyboard input. | |
|
Do not use (sergeyu)
2017/05/15 22:15:12
This comment is doesn't add much information from
nicholss
2017/05/15 23:06:11
I am not sure I like having the indirection anymor
| |
| 18 class KeyboardInterpreter { | |
| 19 public: | |
| 20 explicit KeyboardInterpreter(ChromotingSession* input_stub); | |
| 21 ~KeyboardInterpreter(); | |
| 22 | |
| 23 // Delegates to |KeyboardInputStrategy| to covert and send the input. | |
| 24 void HandleTextEvent(const std::string& text, uint8_t modifiers); | |
| 25 // Delegates to |KeyboardInputStrategy| to covert and send the delete. | |
| 26 void HandleDeleteEvent(uint8_t modifiers); | |
| 27 | |
| 28 private: | |
| 29 std::unique_ptr<KeyboardInputStrategy> input_strategy_; | |
| 30 | |
| 31 DISALLOW_COPY_AND_ASSIGN(KeyboardInterpreter); | |
| 32 }; | |
| 33 | |
| 34 } // namespace remoting | |
| 35 #endif // REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_ | |
| OLD | NEW |