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

Unified Diff: examples/android/src/org/chromium/examples/android/ExampleServiceApp.java

Issue 1116653002: Introduce authentication service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow review 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
« no previous file with comments | « no previous file | mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/android/src/org/chromium/examples/android/ExampleServiceApp.java
diff --git a/examples/android/src/org/chromium/examples/android/ExampleServiceApp.java b/examples/android/src/org/chromium/examples/android/ExampleServiceApp.java
index 499de1f99337ffc4f3ce30396e12175155a37d32..d476d8d1888193d92736036c99356d7ad8cbacc3 100644
--- a/examples/android/src/org/chromium/examples/android/ExampleServiceApp.java
+++ b/examples/android/src/org/chromium/examples/android/ExampleServiceApp.java
@@ -18,7 +18,7 @@ import org.chromium.mojom.mojo.ExampleService;
import org.chromium.mojom.mojo.Shell;
class ExampleServiceApp implements ApplicationDelegate {
- private static String TAG = "ExampleServiceApp";
+ private static final String TAG = "ExampleServiceApp";
public static class ExampleServiceImpl implements ExampleService {
public ExampleServiceImpl() {}
@@ -41,8 +41,7 @@ class ExampleServiceApp implements ApplicationDelegate {
}
@Override
- public boolean configureIncomingConnection(
- String requestorUrl, ApplicationConnection connection) {
+ public boolean configureIncomingConnection(ApplicationConnection connection) {
Log.i(TAG, "ExampleServiceApp.ConfigureIncomingConnection() called.");
connection.addService(new ServiceFactoryBinder<ExampleService>() {
@Override
« no previous file with comments | « no previous file | mojo/public/java/application/src/org/chromium/mojo/application/ApplicationDelegate.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698