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

Unified Diff: content/browser/child_process_launcher_helper_android.cc

Issue 2706933003: webapk: Avoid overwriting default CreationParams
Patch Set: cleanups Created 3 years, 10 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
Index: content/browser/child_process_launcher_helper_android.cc
diff --git a/content/browser/child_process_launcher_helper_android.cc b/content/browser/child_process_launcher_helper_android.cc
index 955689e6cd060f535b87f2925795788b77b5d7fd..0e14cf659156c41e8b6be735d0f5829712924efe 100644
--- a/content/browser/child_process_launcher_helper_android.cc
+++ b/content/browser/child_process_launcher_helper_android.cc
@@ -116,11 +116,9 @@ ChildProcessLauncherHelper::LaunchProcessOnLauncherThread(
int* launch_result) {
*is_synchronous_launch = false;
- StartChildProcess(command_line()->argv(),
- child_process_id(),
- files_to_register.get(),
- base::Bind(&ChildProcessStartedCallback,
- RetainedRef(this)));
+ StartChildProcess(
+ command_line()->argv(), child_process_id(), files_to_register.get(),
+ param_id_, base::Bind(&ChildProcessStartedCallback, RetainedRef(this)));
return Process();
}

Powered by Google App Engine
This is Rietveld 408576698