| Index: content/browser/child_process_launcher_helper.cc
|
| diff --git a/content/browser/child_process_launcher_helper.cc b/content/browser/child_process_launcher_helper.cc
|
| index 9aa83459ba904dbf4e7db6a08f125a156cdda4a9..78a8d6f0765fcb678782233f163ab4ac23ed8d9f 100644
|
| --- a/content/browser/child_process_launcher_helper.cc
|
| +++ b/content/browser/child_process_launcher_helper.cc
|
| @@ -55,14 +55,15 @@ ChildProcessLauncherHelper::ChildProcessLauncherHelper(
|
| std::unique_ptr<base::CommandLine> command_line,
|
| std::unique_ptr<SandboxedProcessLauncherDelegate> delegate,
|
| const base::WeakPtr<ChildProcessLauncher>& child_process_launcher,
|
| - bool terminate_on_shutdown)
|
| + bool terminate_on_shutdown,
|
| + int param_id)
|
| : child_process_id_(child_process_id),
|
| client_thread_id_(client_thread_id),
|
| + param_id_(param_id),
|
| command_line_(std::move(command_line)),
|
| delegate_(std::move(delegate)),
|
| child_process_launcher_(child_process_launcher),
|
| - terminate_on_shutdown_(terminate_on_shutdown) {
|
| -}
|
| + terminate_on_shutdown_(terminate_on_shutdown) {}
|
|
|
| ChildProcessLauncherHelper::~ChildProcessLauncherHelper() {
|
| }
|
|
|