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

Unified Diff: content/browser/browser_child_process_host_impl.cc

Issue 16267002: Re-fix http://crbug.com/87176, and add a test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Much shorter test Created 7 years, 6 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/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 {

Powered by Google App Engine
This is Rietveld 408576698