Index: mojo/dart/packages/mojo/lib/src/application.dart |
diff --git a/mojo/dart/packages/mojo/lib/src/application.dart b/mojo/dart/packages/mojo/lib/src/application.dart |
index 07ba654d8ce515f1749e0fd58a876a8ac931b097..f9f92659e0f7a591be4b576d3f63f9e972e91cde 100644 |
--- a/mojo/dart/packages/mojo/lib/src/application.dart |
+++ b/mojo/dart/packages/mojo/lib/src/application.dart |
@@ -42,11 +42,9 @@ class _ApplicationImpl implements application_mojom.Application { |
} |
@override |
- void acceptConnection( |
- String requestorUrl, |
- ServiceProviderInterfaceRequest services, |
- ServiceProviderInterface exposedServices, |
- String resolvedUrl) => |
+ void acceptConnection(String requestorUrl, |
+ String resolvedUrl, |
+ ServiceProviderInterfaceRequest services) => |
_application._acceptConnection(requestorUrl, services, resolvedUrl); |
@override |
@@ -99,7 +97,7 @@ abstract class Application implements bindings.ServiceConnector { |
// Returns a connection to the app at |url|. |
ApplicationConnection connectToApplication(String url) { |
var proxy = new ServiceProviderProxy.unbound(); |
- _applicationImpl.shell.connectToApplication(url, proxy, null); |
+ _applicationImpl.shell.connectToApplication(url, proxy); |
var connection = new ApplicationConnection(null, proxy); |
_applicationConnections.add(connection); |
return connection; |