Chromium Code Reviews| Index: remoting/client/input/keyboard_interpreter.h |
| diff --git a/remoting/client/input/keyboard_interpreter.h b/remoting/client/input/keyboard_interpreter.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..21299ff12fae71ca9699e1aebac626aef6d9e259 |
| --- /dev/null |
| +++ b/remoting/client/input/keyboard_interpreter.h |
| @@ -0,0 +1,35 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// 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_INTERPRETER_H_ |
| +#define REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_ |
| + |
| +#include <string> |
| + |
| +#include "base/macros.h" |
| +#include "remoting/client/chromoting_session.h" |
| + |
| +namespace remoting { |
| + |
| +class KeyboardInputStrategy; |
| + |
| +// 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
|
| +class KeyboardInterpreter { |
| + public: |
| + explicit KeyboardInterpreter(ChromotingSession* input_stub); |
| + ~KeyboardInterpreter(); |
| + |
| + // Delegates to |KeyboardInputStrategy| to covert and send the input. |
| + void HandleTextEvent(const std::string& text, uint8_t modifiers); |
| + // Delegates to |KeyboardInputStrategy| to covert and send the delete. |
| + void HandleDeleteEvent(uint8_t modifiers); |
| + |
| + private: |
| + std::unique_ptr<KeyboardInputStrategy> input_strategy_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(KeyboardInterpreter); |
| +}; |
| + |
| +} // namespace remoting |
| +#endif // REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_ |