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

Unified Diff: mojo/services/keyboard/interfaces/keyboard.mojom

Issue 1453823005: Implement Linux IME support (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add service name annotation, remove unused member variables Created 5 years, 1 month 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
« no previous file with comments | « mojo/services/keyboard/interfaces/BUILD.gn ('k') | services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/keyboard/interfaces/keyboard.mojom
diff --git a/mojo/services/keyboard/interfaces/keyboard.mojom b/mojo/services/keyboard/interfaces/keyboard.mojom
index 97942207a8ac08efdf7931d35b1d49500c9792f9..4921a20a66246a870483961f10f7e8e9923bce0e 100644
--- a/mojo/services/keyboard/interfaces/keyboard.mojom
+++ b/mojo/services/keyboard/interfaces/keyboard.mojom
@@ -5,6 +5,8 @@
[DartPackage="mojo_services"]
module keyboard;
+import "native_viewport/interfaces/native_viewport.mojom";
+
struct CompletionData {
int64 id;
int32 position;
@@ -49,3 +51,10 @@ interface KeyboardService {
SetText(string text);
SetSelection(int32 start, int32 end);
};
+
+[ServiceName="keyboard::KeyboardServiceFactory"]
+interface KeyboardServiceFactory {
+ CreateKeyboardService(
+ mojo.NativeViewportEventDispatcher& keyEventDispatcher,
+ KeyboardService& serviceRequest);
+};
« no previous file with comments | « mojo/services/keyboard/interfaces/BUILD.gn ('k') | services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698