 Chromium Code Reviews
 Chromium Code Reviews Issue 2868383003:
  [CRD iOS] Send key events to the session.  (Closed)
    
  
    Issue 2868383003:
  [CRD iOS] Send key events to the session.  (Closed) 
  | Index: remoting/client/input/text_keyboard_input_strategy.h | 
| diff --git a/remoting/client/input/text_keyboard_input_strategy.h b/remoting/client/input/text_keyboard_input_strategy.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..ca0daf17a3d6a44f541737c5a5a4fdf77c9c839d | 
| --- /dev/null | 
| +++ b/remoting/client/input/text_keyboard_input_strategy.h | 
| @@ -0,0 +1,34 @@ | 
| +// 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_TEXT_KEYBOARD_INPUT_STRATEGY_H_ | 
| +#define REMOTING_CLIENT_INPUT_TEXT_KEYBOARD_INPUT_STRATEGY_H_ | 
| + | 
| +#include "base/macros.h" | 
| +#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.
 | 
| +#include "remoting/client/input/keyboard_input_strategy.h" | 
| + | 
| +namespace remoting { | 
| + | 
| +class ClientInputInjector; | 
| + | 
| +class TextKeyboardInputStrategy : public KeyboardInputStrategy { | 
| + public: | 
| + explicit TextKeyboardInputStrategy(ClientInputInjector* input_injector); | 
| + ~TextKeyboardInputStrategy() override; | 
| + | 
| + // KeyboardInputStrategy overrides. | 
| + void HandleTextEvent(const std::string& text, uint8_t modifiers) override; | 
| + void HandleDeleteEvent(uint8_t modifiers) override; | 
| + | 
| + private: | 
| + std::queue<KeyEvent> ConvertDeleteEvent(uint8_t modifiers); | 
| + | 
| + ClientInputInjector* input_injector_; | 
| + | 
| + DISALLOW_COPY_AND_ASSIGN(TextKeyboardInputStrategy); | 
| +}; | 
| + | 
| +} // namespace remoting | 
| +#endif // REMOTING_CLIENT_INPUT_TEXT_KEYBOARD_INPUT_STRATEGY_H_ |