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

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

Issue 2868383003: [CRD iOS] Send key events to the session. (Closed)
Patch Set: Adding backspace support to the keyboard. 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_input_strategy.h
diff --git a/remoting/client/input/keyboard_input_strategy.h b/remoting/client/input/keyboard_input_strategy.h
new file mode 100644
index 0000000000000000000000000000000000000000..9f18dc6c9a76b9cbfd491fc429482af7d2e8ecc6
--- /dev/null
+++ b/remoting/client/input/keyboard_input_strategy.h
@@ -0,0 +1,31 @@
+// 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_INPUT_STRATEGY_H_
+#define REMOTING_CLIENT_INPUT_KEYBOARD_INPUT_STRATEGY_H_
+
+#include <stdint.h>
+#include <string>
+
+namespace remoting {
+
+struct KeyEvent {
+ uint32_t keycode;
+ bool keydown;
+};
+
+// This is an interface used by |KeyboardInterpreter| to customize how keyboard
+// input is handled.
+class KeyboardInputStrategy {
+ public:
+ virtual ~KeyboardInputStrategy() {}
+
+ // Handle a text event.
+ virtual void HandleTextEvent(const std::string& text, uint8_t modifiers) = 0;
Do not use (sergeyu) 2017/05/15 22:15:12 Please add documentation for modifiers. Where are
nicholss 2017/05/15 23:06:10 I am not sure how I am going to use them yet. The
+ // Handle delete event.
+ virtual void HandleDeleteEvent(uint8_t modifiers) = 0;
+};
+
+} // namespace remoting
+#endif // REMOTING_CLIENT_INPUT_KEYBOARD_INPUT_STRATEGY_H_
Do not use (sergeyu) 2017/05/15 22:15:12 nit: empty line here please. Same in other files
nicholss 2017/05/15 23:06:10 Strange, I have one locally in all files.

Powered by Google App Engine
This is Rietveld 408576698