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

Unified Diff: third_party/mojo/src/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java

Issue 1127293003: Update mojo sdk to rev f84766d3b6420b7cf6a113d9d65d73cb5fe18d90 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatting Created 5 years, 7 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
Index: third_party/mojo/src/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java
diff --git a/third_party/mojo/src/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java b/third_party/mojo/src/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java
index 61f39dac7135797b896957f6e1f382cf549835ed..72b1c62b222653d9c7e3e9760866c21fc2dfffe7 100644
--- a/third_party/mojo/src/mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java
+++ b/third_party/mojo/src/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);
+ public boolean configureIncomingConnection(ApplicationConnection connection);
/**
* Called before exiting. After returning from this call, the delegate cannot expect RunLoop to

Powered by Google App Engine
This is Rietveld 408576698