Chromium Code Reviews| Index: mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java |
| diff --git a/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java b/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java |
| index 61f39dac7135797b896957f6e1f382cf549835ed..72b1c62b222653d9c7e3e9760866c21fc2dfffe7 100644 |
| --- a/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java |
| +++ b/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java |
| @@ -24,12 +24,10 @@ public interface ApplicationDelegate { |
| * This method is used to configure what services a connection supports when being connected to. |
| * Return false to reject the connection entirely. |
| * |
| - * @param requestorUrl URL of the application requesting service. |
| * @param connection A handle to the connection. |
| * @return If this application accepts any incoming connection. |
| */ |
| - public boolean configureIncomingConnection( |
| - String requestorUrl, ApplicationConnection connection); |
|
ppi
2015/04/29 13:32:23
Why this change?
qsr
2015/04/29 14:22:19
Because now that I use this requestorUrl, I realiz
|
| + public boolean configureIncomingConnection(ApplicationConnection connection); |
| /** |
| * Called before exiting. After returning from this call, the delegate cannot expect RunLoop to |