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

Unified Diff: examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java

Issue 1169543002: Fix the API for ServiceFactoryBinder to be type safe. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | examples/java_android/echo/src/org/chromium/examples/java_echo/EchoServerApp.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java
diff --git a/examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java b/examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java
index 31dca029326af0d1995a7a8c063fdc92244e5a02..ff8806f3adfac61712769e705d88e4b9d3ef2751 100644
--- a/examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java
+++ b/examples/java_android/echo/src/org/chromium/examples/java_echo/EchoClientApp.java
@@ -88,8 +88,8 @@ class EchoClientApp implements ApplicationDelegate {
@Override
public void quit() {}
- public static void mojoMain(
- Context context, Core core, MessagePipeHandle applicationRequestHandle) {
+ public static void mojoMain(@SuppressWarnings("unused") Context context, Core core,
+ MessagePipeHandle applicationRequestHandle) {
ApplicationRunner.run(new EchoClientApp(core), core, applicationRequestHandle);
}
}
« no previous file with comments | « no previous file | examples/java_android/echo/src/org/chromium/examples/java_echo/EchoServerApp.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698