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

Unified Diff: mojo/public/python/mojo_application/application_impl.py

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
Index: mojo/public/python/mojo_application/application_impl.py
diff --git a/mojo/public/python/mojo_application/application_impl.py b/mojo/public/python/mojo_application/application_impl.py
index 24808820e84b52bddefeedace2feaa274bc5d7c0..22e995585f977dc87321956ae210c67335137f4a 100644
--- a/mojo/public/python/mojo_application/application_impl.py
+++ b/mojo/public/python/mojo_application/application_impl.py
@@ -28,8 +28,7 @@ class ApplicationImpl(application_mojom.Application):
self.args = args
self._delegate.Initialize(shell, self)
- def AcceptConnection(self, requestor_url, services, exposed_services,
- resolved_url):
+ def AcceptConnection(self, requestor_url, resolved_url, services):
service_provider = ServiceProviderImpl(services)
if self._delegate.OnAcceptConnection(requestor_url, resolved_url,
service_provider):

Powered by Google App Engine
This is Rietveld 408576698