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

Unified Diff: content/public/android/java/src/org/chromium/content/app/ChildProcessService.java

Issue 2560403002: android: Remove command line args from intent bundle (Closed)
Patch Set: delete more Created 4 years 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 | content/public/android/java/src/org/chromium/content/app/ChildProcessServiceImpl.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
diff --git a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
index 376f319067f201d32a6485b1026b47c668b9e203..9a9f212287a7c1455f18bf587d2079e2c6f9ad74 100644
--- a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
+++ b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java
@@ -6,7 +6,6 @@ package org.chromium.content.app;
import android.app.Service;
import android.content.Intent;
-import android.os.Bundle;
import android.os.IBinder;
import org.chromium.base.annotations.JNINamespace;
@@ -48,20 +47,4 @@ public class ChildProcessService extends Service {
stopSelf();
return mChildProcessServiceImpl.bind(intent, -1);
}
-
- /**
- * Helper method to initialize the params from intent.
- * @param intent Intent to launch the service.
- */
- protected void initializeParams(Intent intent) {
- mChildProcessServiceImpl.initializeParams(intent);
- }
-
- /**
- * Helper method to get the information about the service from a given bundle.
- * @param bundle Bundle that contains the information to start the service.
- */
- protected void getServiceInfo(Bundle bundle) {
- mChildProcessServiceImpl.getServiceInfo(bundle);
- }
}
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/app/ChildProcessServiceImpl.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698