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

Unified Diff: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java

Issue 2865173002: Removing the unused child process ID parameter in ChildProcessLauncher. (Closed)
Patch Set: Created 3 years, 7 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 | « content/public/android/javatests/src/org/chromium/content/browser/ChildProcessLauncherTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java
diff --git a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java
index 807e77ce0e7f1895e542a436923d365d26ce2d75..086dfd6abd2e1a2113004f9a08858291d7e09c04 100644
--- a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java
+++ b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils.java
@@ -61,10 +61,9 @@ public final class ChildProcessLauncherTestUtils {
return runOnLauncherAndGetResult(new Callable<BaseChildProcessConnection>() {
@Override
public BaseChildProcessConnection call() {
- return ChildProcessLauncher.startInternal(context, commandLine,
- 0 /* childProcessId */, filesToMap, null /* launchCallback */,
- null /* childProcessCallback */, true /* inSandbox */,
- false /* alwaysInForeground */, params);
+ return ChildProcessLauncher.startInternal(context, commandLine, filesToMap,
+ null /* launchCallback */, null /* childProcessCallback */,
+ true /* inSandbox */, false /* alwaysInForeground */, params);
}
});
}
« no previous file with comments | « content/public/android/javatests/src/org/chromium/content/browser/ChildProcessLauncherTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698