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

Unified Diff: chrome/test/layout_test_http_server.cc

Issue 7377012: Change base::LaunchProcess API slightly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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 | « chrome/test/automation/proxy_launcher.cc ('k') | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/layout_test_http_server.cc
diff --git a/chrome/test/layout_test_http_server.cc b/chrome/test/layout_test_http_server.cc
index 34c79ab6d0fd0ddd0e4b462592af5d318d64b036..b1ad42e6361c30471a31535017ffce4a5578ce9f 100644
--- a/chrome/test/layout_test_http_server.cc
+++ b/chrome/test/layout_test_http_server.cc
@@ -87,7 +87,7 @@ bool LayoutTestHttpServer::Start() {
// continuing.
base::LaunchOptions options;
options.wait = true;
- running_ = base::LaunchProcess(cmd_line, options);
+ running_ = base::LaunchProcess(cmd_line, options, NULL);
return running_;
}
@@ -104,7 +104,7 @@ bool LayoutTestHttpServer::Stop() {
base::LaunchOptions options;
options.wait = true;
- bool stopped = base::LaunchProcess(cmd_line, options);
+ bool stopped = base::LaunchProcess(cmd_line, options, NULL);
running_ = !stopped;
return stopped;
}
« no previous file with comments | « chrome/test/automation/proxy_launcher.cc ('k') | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698