| 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 | 
|  | 12 namespace remoting { | 
|  | 13 | 
|  | 14 class KeyboardInputStrategy; | 
|  | 15 class ClientInputInjector; | 
|  | 16 | 
|  | 17 // This is a class for interpreting raw keyboard input, it will delegate | 
|  | 18 // handling of text events to the selected keyboard input strategy. | 
|  | 19 class KeyboardInterpreter { | 
|  | 20  public: | 
|  | 21   explicit KeyboardInterpreter(ClientInputInjector* input_injector); | 
|  | 22   ~KeyboardInterpreter(); | 
|  | 23 | 
|  | 24   // Delegates to |KeyboardInputStrategy| to covert and send the input. | 
|  | 25   void HandleTextEvent(const std::string& text, uint8_t modifiers); | 
|  | 26   // Delegates to |KeyboardInputStrategy| to covert and send the delete. | 
|  | 27   void HandleDeleteEvent(uint8_t modifiers); | 
|  | 28 | 
|  | 29  private: | 
|  | 30   std::unique_ptr<KeyboardInputStrategy> input_strategy_; | 
|  | 31 | 
|  | 32   DISALLOW_COPY_AND_ASSIGN(KeyboardInterpreter); | 
|  | 33 }; | 
|  | 34 | 
|  | 35 }  // namespace remoting | 
|  | 36 #endif  // REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_ | 
| OLD | NEW | 
|---|