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

Unified Diff: ui/keyboard/webui/keyboard.mojom

Issue 328303008: athena: Use mojo to provide the bindings for the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 6 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: ui/keyboard/webui/keyboard.mojom
diff --git a/ui/keyboard/webui/keyboard.mojom b/ui/keyboard/webui/keyboard.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..9b05dc29fc119b3a537e99f264e02f89bb511b39
--- /dev/null
+++ b/ui/keyboard/webui/keyboard.mojom
@@ -0,0 +1,14 @@
+[Client=KeyboardAPI]
+interface KeyboardUIHandlerMojo {
+ SendKeyEvent(string event_type,
+ int32 char_value,
+ int32 key_code,
+ string key_name,
+ int32 modifiers);
+
+ HideKeyboard();
+};
+
+interface KeyboardAPI {
+ OnTextInputTypeChanged(string input_type);
+};

Powered by Google App Engine
This is Rietveld 408576698