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: chrome/test/ui_test_utils.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
Index: chrome/test/ui_test_utils.cc
diff --git a/chrome/test/ui_test_utils.cc b/chrome/test/ui_test_utils.cc
index 1fb3d3e99d84372d39d4008fa12426b0358389b5..79ed21dad61e13a8703864d59729421be5d4d210 100644
--- a/chrome/test/ui_test_utils.cc
+++ b/chrome/test/ui_test_utils.cc
@@ -711,7 +711,7 @@ bool TestWebSocketServer::Start(const FilePath& root_directory) {
SetPythonPath();
base::LaunchOptions options;
options.wait = true;
- if (!base::LaunchProcess(*cmd_line.get(), options)) {
+ if (!base::LaunchProcess(*cmd_line.get(), options, NULL)) {
LOG(ERROR) << "Unable to launch websocket server.";
return false;
}
@@ -765,7 +765,7 @@ TestWebSocketServer::~TestWebSocketServer() {
websocket_pid_file_.value());
base::LaunchOptions options;
options.wait = true;
- base::LaunchProcess(*cmd_line.get(), options);
+ base::LaunchProcess(*cmd_line.get(), options, NULL);
}
TestNotificationObserver::TestNotificationObserver()
« no previous file with comments | « chrome/test/out_of_proc_test_runner.cc ('k') | chrome_frame/ready_mode/internal/registry_ready_mode_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698