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

Unified Diff: mojo/public/python/mojo_application/application_delegate.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 | « examples/python/__mojo__.py ('k') | mojo/public/python/mojo_application/application_impl.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/python/mojo_application/application_delegate.py
diff --git a/mojo/public/python/mojo_application/application_delegate.py b/mojo/public/python/mojo_application/application_delegate.py
index c4a817d968940bc091a12b0f3ecc26aad97d2562..58918e597d3a7bbe01d87119ea82a82068e41253 100644
--- a/mojo/public/python/mojo_application/application_delegate.py
+++ b/mojo/public/python/mojo_application/application_delegate.py
@@ -18,10 +18,13 @@ class ApplicationDelegate:
"""
pass
- def OnAcceptConnection(self, service_provider, requestor_url,
+ def OnAcceptConnection(self,
+ requestor_url,
+ resolved_url,
+ service_provider,
exposed_services):
"""
Called from ApplicationImpl's OnAcceptConnection() method. Returns a bool
indicating whether this connection should be accepted.
"""
- return True
+ return False
« no previous file with comments | « examples/python/__mojo__.py ('k') | mojo/public/python/mojo_application/application_impl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698