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

Unified Diff: sky/framework/shell.dart

Issue 934253003: Dart Bindings: ApplicationConnection (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Changes per review feedback Created 5 years, 10 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/engine/bindings/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/shell.dart
diff --git a/sky/framework/shell.dart b/sky/framework/shell.dart
index a3d39e409f8f0ff8c147626dc74e323561c59e10..66e34fa643a199d1230faf0affabd3e0bbe11c68 100644
--- a/sky/framework/shell.dart
+++ b/sky/framework/shell.dart
@@ -15,9 +15,9 @@ final ShellProxy _shell = new ShellProxy.fromHandle(
ApplicationConnection connectToApplication(String url) {
var serviceProviderProxy = new ServiceProviderProxy.unbound();
_shell.connectToApplication(url, serviceProviderProxy, null);
- return new ApplicationConnection(serviceProviderProxy);
+ return new ApplicationConnection(null, serviceProviderProxy);
}
void connectToService(String url, bindings.Proxy proxy) {
- connectToApplication(url).connectToService(proxy);
+ connectToApplication(url).requestService(proxy);
}
« no previous file with comments | « sky/engine/bindings/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698