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

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

Issue 988653002: Fix unused variable pylint warning. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/public/python/mojo_application/application_delegate.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 34c5780b859db207f700ec483d984c76ee535ddf..80b0376853e512a03f658b32d4a81faa2121e44c 100644
--- a/mojo/public/python/mojo_application/application_impl.py
+++ b/mojo/public/python/mojo_application/application_impl.py
@@ -29,8 +29,8 @@ class ApplicationImpl(application_mojom.Application):
def AcceptConnection(self, requestor_url, services, exposed_services,
resolved_url):
service_provider = ServiceProviderImpl(services)
- if self._delegate.OnAcceptConnection(service_provider, requestor_url,
- exposed_services):
+ if self._delegate.OnAcceptConnection(requestor_url, resolved_url,
+ service_provider, exposed_services):
# We keep a reference to ServiceProviderImpl to ensure neither it nor
# |services| gets garbage collected.
services.Bind(service_provider)
« no previous file with comments | « mojo/public/python/mojo_application/application_delegate.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698