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