Index: content/browser/browser_child_process_host_impl.cc |
diff --git a/content/browser/browser_child_process_host_impl.cc b/content/browser/browser_child_process_host_impl.cc |
index 44cee2e0f67bcfd17e0e889a6879d9b589fb462e..c97c7dad617ee861ee3e24b0c2fe7b25a06aba74 100644 |
--- a/content/browser/browser_child_process_host_impl.cc |
+++ b/content/browser/browser_child_process_host_impl.cc |
@@ -156,7 +156,7 @@ void BrowserChildProcessHostImpl::Launch( |
cmd_line->CopySwitchesFrom(browser_command_line, kForwardSwitches, |
arraysize(kForwardSwitches)); |
- child_process_.reset(new ChildProcessLauncher( |
+ child_process_ = NewChildProcessLauncher( |
#if defined(OS_WIN) |
delegate, |
#elif defined(OS_POSIX) |
@@ -166,7 +166,7 @@ void BrowserChildProcessHostImpl::Launch( |
#endif |
cmd_line, |
data_.id, |
- this)); |
+ this); |
} |
const ChildProcessData& BrowserChildProcessHostImpl::GetData() const { |