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; |