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

Unified Diff: remoting/client/input/simple_keyboard_input_strategy.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/simple_keyboard_input_strategy.h
diff --git a/remoting/client/input/simple_keyboard_input_strategy.h b/remoting/client/input/simple_keyboard_input_strategy.h
new file mode 100644
index 0000000000000000000000000000000000000000..43e752eb537e7bfc2873307e05eea891af3f6f69
--- /dev/null
+++ b/remoting/client/input/simple_keyboard_input_strategy.h
@@ -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.
+
+#ifndef REMOTING_CLIENT_INPUT_SIMPLE_KEYBOARD_INPUT_STRATEGY_H_
+#define REMOTING_CLIENT_INPUT_SIMPLE_KEYBOARD_INPUT_STRATEGY_H_
+
+#include "base/macros.h"
+#include "remoting/client/input/keyboard_input_strategy.h"
+
+namespace remoting {
+
+class SimpleKeyboardInputStrategy : public KeyboardInputStrategy {
+ public:
+ SimpleKeyboardInputStrategy();
+ ~SimpleKeyboardInputStrategy() override;
+
+ // KeyboardInputStrategy overrides.
+ std::queue<KeyEvent> ConvertTextEvent(const std::string& text,
+ uint8_t modifiers) override;
+ std::queue<KeyEvent> ConvertDeleteEvent(uint8_t modifiers) override;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SimpleKeyboardInputStrategy);
+};
+
+} // namespace remoting
+#endif // REMOTING_CLIENT_INPUT_SIMPLE_KEYBOARD_INPUT_STRATEGY_H_

Powered by Google App Engine
This is Rietveld 408576698