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(); |
} |