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

Unified Diff: mojo/dart/packages/mojo/lib/src/application.dart

Issue 2034383003: Removed exposed_services from mojom definitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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 | « mojo/dart/packages/mojo/lib/mojo/shell.mojom.dart ('k') | mojo/go/tests/application_impl_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « mojo/dart/packages/mojo/lib/mojo/shell.mojom.dart ('k') | mojo/go/tests/application_impl_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698