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

Unified Diff: util/net/http_transport_test.cc

Issue 854363006: win: Implementation of http_transport_win based on WinInet (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@multiproc-impl
Patch Set: Created 5 years, 11 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 | « no previous file | util/net/http_transport_test_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/net/http_transport_test.cc
diff --git a/util/net/http_transport_test.cc b/util/net/http_transport_test.cc
index cd8ebe867ee17a976c7f2717673781316b766c29..69340b93831033b7afc0434283fe969a193a9ac2 100644
--- a/util/net/http_transport_test.cc
+++ b/util/net/http_transport_test.cc
@@ -50,7 +50,9 @@ class HTTPTransportTestFixture : public MultiprocessExec {
request_validator_(request_validator) {
// TODO(rsesek): Use a more robust mechanism to locate testdata
// <https://code.google.com/p/crashpad/issues/detail?id=4>.
- SetChildCommand("util/net/http_transport_test_server.py", nullptr);
+ std::vector<std::string> args;
+ args.push_back("util/net/http_transport_test_server.py");
+ SetChildCommand("d:\\src\\depot_tools\\python276_bin\\python.exe", &args);
}
const HTTPHeaders& headers() { return headers_; }
« no previous file with comments | « no previous file | util/net/http_transport_test_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698