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

Unified Diff: net/test/local_test_server_win.cc

Issue 10073033: Run safebrowsing_service_test through the net testserver code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review changes Created 8 years, 8 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: net/test/local_test_server_win.cc
diff --git a/net/test/local_test_server_win.cc b/net/test/local_test_server_win.cc
index 0b3031239a127a847cb80349e13fb24fa2589293..af16e2481c01baf5c9e525d3bb01cbb27804f509 100644
--- a/net/test/local_test_server_win.cc
+++ b/net/test/local_test_server_win.cc
@@ -94,8 +94,8 @@ bool LocalTestServer::LaunchPython(const FilePath& testserver_path) {
.Append(FILE_PATH_LITERAL("python.exe"));
CommandLine python_command(python_exe);
- python_command.AppendArgPath(testserver_path);
- if (!AddCommandLineArguments(&python_command))
+
+ if (!AddCommandLineArguments(testserver_path, &python_command))
return false;
HANDLE child_read = NULL;
@@ -176,4 +176,3 @@ bool LocalTestServer::WaitToStart() {
}
} // namespace net
-

Powered by Google App Engine
This is Rietveld 408576698