| Index: third_party/mojo/src/mojo/public/python/mojo_application/application_delegate.py
|
| diff --git a/third_party/mojo/src/mojo/public/python/mojo_application/application_delegate.py b/third_party/mojo/src/mojo/public/python/mojo_application/application_delegate.py
|
| index c4a817d968940bc091a12b0f3ecc26aad97d2562..58918e597d3a7bbe01d87119ea82a82068e41253 100644
|
| --- a/third_party/mojo/src/mojo/public/python/mojo_application/application_delegate.py
|
| +++ b/third_party/mojo/src/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
|
|
|