| Index: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelperService.java
|
| diff --git a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelperService.java b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelperService.java
|
| index e5b52b8d399cc78395da10505eb146a918f94441..7687d332f1a2c5ef6147343aba19955c0d58d96f 100644
|
| --- a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelperService.java
|
| +++ b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelperService.java
|
| @@ -20,7 +20,7 @@ import org.chromium.base.library_loader.LibraryProcessType;
|
| import org.chromium.base.library_loader.ProcessInitException;
|
| import org.chromium.base.process_launcher.ChildProcessCreationParams;
|
| import org.chromium.base.process_launcher.FileDescriptorInfo;
|
| -import org.chromium.content.browser.BaseChildProcessConnection;
|
| +import org.chromium.content.browser.ChildProcessConnection;
|
|
|
| /**
|
| * A Service that assists the ChildProcessLauncherTest that responds to one message, which
|
| @@ -70,9 +70,8 @@ public class ChildProcessLauncherTestHelperService extends Service {
|
| final boolean bindToCaller = true;
|
| ChildProcessCreationParams params = new ChildProcessCreationParams(
|
| getPackageName(), false, LibraryProcessType.PROCESS_CHILD, bindToCaller);
|
| - final BaseChildProcessConnection conn =
|
| - ChildProcessLauncherTestUtils.startInternalForTesting(
|
| - this, commandLine, new FileDescriptorInfo[0], params);
|
| + final ChildProcessConnection conn = ChildProcessLauncherTestUtils.startInternalForTesting(
|
| + this, commandLine, new FileDescriptorInfo[0], params);
|
|
|
| // Poll the connection until it is set up. The main test in ChildProcessLauncherTest, which
|
| // has bound the connection to this service, manages the timeout via the lifetime of this
|
|
|