Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: remoting/client/input/keyboard_interpreter.cc

Issue 2868383003: [CRD iOS] Send key events to the session. (Closed)
Patch Set: Update based on feedback. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/input/keyboard_interpreter.h ('k') | remoting/client/input/text_keyboard_input_strategy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/input/keyboard_interpreter.cc
diff --git a/remoting/client/input/keyboard_interpreter.cc b/remoting/client/input/keyboard_interpreter.cc
new file mode 100644
index 0000000000000000000000000000000000000000..725956a4e0a38a2c1b15c1770556b819cd9673e5
--- /dev/null
+++ b/remoting/client/input/keyboard_interpreter.cc
@@ -0,0 +1,28 @@
+// 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.
+
+#include "remoting/client/input/keyboard_interpreter.h"
+
+#include "base/logging.h"
+#include "remoting/client/input/text_keyboard_input_strategy.h"
+
+namespace remoting {
+
+KeyboardInterpreter::KeyboardInterpreter(ClientInputInjector* input_injector) {
+ // TODO(nicholss): This should be configurable.
+ input_strategy_.reset(new TextKeyboardInputStrategy(input_injector));
+}
+
+KeyboardInterpreter::~KeyboardInterpreter() {}
+
+void KeyboardInterpreter::HandleTextEvent(const std::string& text,
+ uint8_t modifiers) {
+ input_strategy_->HandleTextEvent(text, modifiers);
+}
+
+void KeyboardInterpreter::HandleDeleteEvent(uint8_t modifiers) {
+ input_strategy_->HandleDeleteEvent(modifiers);
+}
+
+} // namespace remoting
« no previous file with comments | « remoting/client/input/keyboard_interpreter.h ('k') | remoting/client/input/text_keyboard_input_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698