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

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

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.h
diff --git a/remoting/client/input/keyboard_interpreter.h b/remoting/client/input/keyboard_interpreter.h
new file mode 100644
index 0000000000000000000000000000000000000000..c0e9a0c9599c1bc41361e924bd7d40c106cae0b9
--- /dev/null
+++ b/remoting/client/input/keyboard_interpreter.h
@@ -0,0 +1,37 @@
+// 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"
+
joedow 2017/05/12 19:13:17 nit: remove newline
nicholss 2017/05/12 20:45:58 Done.
+#include "remoting/client/chromoting_session.h"
+
+namespace remoting {
+
+class KeyboardInputStrategy;
+
+// This is a class for interpreting raw keyboard input.
+class KeyboardInterpreter {
+ public:
+ KeyboardInterpreter(ChromotingSession* input_stub);
joedow 2017/05/12 19:13:17 single param c'tors should be marked explicit.
nicholss 2017/05/12 20:45:58 Done.
+ ~KeyboardInterpreter();
+
+ // Delegates to |KeyboardInputStrategy| to covert the input and then sends
+ // the results to |ChromotingSession| via SendKeyEvent.
+ void HandleTextEvent(const std::string& text, uint8_t modifiers);
nicholss 2017/05/12 18:54:16 Modifiers are not used yet.
+ void HandleDeleteEvent(uint8_t modifiers);
+
+ private:
+ std::unique_ptr<KeyboardInputStrategy> input_strategy_;
+ ChromotingSession* input_stub_;
+
+ DISALLOW_COPY_AND_ASSIGN(KeyboardInterpreter);
+};
+
+} // namespace remoting
+#endif // REMOTING_CLIENT_INPUT_KEYBOARD_INTERPRETER_H_

Powered by Google App Engine
This is Rietveld 408576698