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

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

Issue 2868383003: [CRD iOS] Send key events to the session. (Closed)
Patch Set: Clean up old key input code. No longer used. 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
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..fa016b2501f8ca54fbb8e1dc14f033e3b3ba1606
--- /dev/null
+++ b/remoting/client/input/keyboard_interpreter.cc
@@ -0,0 +1,41 @@
+// 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/chromoting_session.h"
+#include "remoting/client/input/simple_keyboard_input_strategy.h"
+
+namespace remoting {
+
+KeyboardInterpreter::KeyboardInterpreter(ChromotingSession* input_stub)
+ : input_stub_(input_stub) {
+ // TODO(nicholss): This should be configurable.
+ input_strategy_.reset(new SimpleKeyboardInputStrategy());
+}
+
+KeyboardInterpreter::~KeyboardInterpreter() {}
+
+void KeyboardInterpreter::HandleTextEvent(const std::string& text,
+ uint8_t modifiers) {
+ std::queue<KeyEvent> keys =
+ input_strategy_->ConvertTextEvent(text, modifiers);
+ while (!keys.empty()) {
+ KeyEvent key = keys.front();
+ input_stub_->SendKeyEvent(key.keycode, key.keydown);
+ keys.pop();
+ }
+}
+
+void KeyboardInterpreter::HandleDeleteEvent(uint8_t modifiers) {
+ std::queue<KeyEvent> keys = input_strategy_->ConvertDeleteEvent(modifiers);
+ while (!keys.empty()) {
+ KeyEvent key = keys.front();
+ input_stub_->SendKeyEvent(0, key.keycode, key.keydown);
+ keys.pop();
+ }
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698