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

Unified Diff: shell/android/apk/src/org/chromium/mojo/shell/ShellService.java

Issue 1281903003: Fix java warnings. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 | « shell/android/apk/src/org/chromium/mojo/shell/NfcReceiverActivity.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/android/apk/src/org/chromium/mojo/shell/ShellService.java
diff --git a/shell/android/apk/src/org/chromium/mojo/shell/ShellService.java b/shell/android/apk/src/org/chromium/mojo/shell/ShellService.java
index b2bfda62b7dd1f2b927fc1b371c9028399f5bf32..7163c27824695a045b021e826226deb00be5256b 100644
--- a/shell/android/apk/src/org/chromium/mojo/shell/ShellService.java
+++ b/shell/android/apk/src/org/chromium/mojo/shell/ShellService.java
@@ -134,11 +134,13 @@ public class ShellService extends Service {
this.mActivity = activity;
}
+ @Override
public void onServiceConnected(ComponentName className, IBinder binder) {
ShellService.ShellBinder shellBinder = (ShellService.ShellBinder) binder;
this.mActivity.onShellBound(shellBinder.getService());
}
+ @Override
public void onServiceDisconnected(ComponentName className) {
this.mActivity.onShellUnbound();
}
« no previous file with comments | « shell/android/apk/src/org/chromium/mojo/shell/NfcReceiverActivity.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698