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

Unified Diff: sky/framework/editing/keyboard.dart

Issue 1088793003: Expose sky KeyboardService in android mojo_shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « sky/framework/editing/editable_string.dart ('k') | sky/framework/embedder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/editing/keyboard.dart
diff --git a/sky/framework/editing/keyboard.dart b/sky/framework/editing/keyboard.dart
index 5cdfb2c94e7cfbf4d8262851ada3abbd00c3236f..e5804915c15a28887ad74b9c1d54affdc5adcd56 100644
--- a/sky/framework/editing/keyboard.dart
+++ b/sky/framework/editing/keyboard.dart
@@ -3,14 +3,14 @@
// found in the LICENSE file.
import '../shell.dart' as shell;
-import 'package:sky/services/keyboard/keyboard.mojom.dart';
+import 'package:keyboard/keyboard.mojom.dart';
class _KeyboardConnection {
KeyboardServiceProxy proxy;
_KeyboardConnection() {
proxy = new KeyboardServiceProxy.unbound();
- shell.requestService(proxy);
+ shell.requestService("mojo:keyboard", proxy);
}
KeyboardService get keyboard => proxy.ptr;
« no previous file with comments | « sky/framework/editing/editable_string.dart ('k') | sky/framework/embedder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698