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: mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java

Issue 1116653002: Introduce authentication service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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: 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

Powered by Google App Engine
This is Rietveld 408576698