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

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

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase + fix android 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 | « mojo/public/interfaces/application/shell.mojom ('k') | mojo/tools/data/apptests » ('j') | 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 248329ab1511cd22391b5807139c406974866a39..34c5780b859db207f700ec483d984c76ee535ddf 100644
--- a/mojo/public/python/mojo_application/application_impl.py
+++ b/mojo/public/python/mojo_application/application_impl.py
@@ -26,7 +26,8 @@ class ApplicationImpl(application_mojom.Application):
self.args = args
self._delegate.Initialize(shell, self)
- def AcceptConnection(self, requestor_url, services, exposed_services):
+ def AcceptConnection(self, requestor_url, services, exposed_services,
+ resolved_url):
jamesr 2015/03/05 20:24:00 pylint complains that this is unused when I upload
service_provider = ServiceProviderImpl(services)
if self._delegate.OnAcceptConnection(service_provider, requestor_url,
exposed_services):
« no previous file with comments | « mojo/public/interfaces/application/shell.mojom ('k') | mojo/tools/data/apptests » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698