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

Unified Diff: chrome/browser/net/http_pipelining_compatibility_client_unittest.cc

Issue 12210088: Make the TestServer use an absolute document root path. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: testserver uses absolute docroot path Created 7 years, 10 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/browser/net/http_pipelining_compatibility_client_unittest.cc
diff --git a/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc b/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
index 04dddfe7ea8a18641c7c2c853ec14698fe75815b..448763811ffaf93957c940dddfd53ddc54e675c1 100644
--- a/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
+++ b/chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
@@ -83,8 +83,9 @@ class HttpPipeliningCompatibilityClientTest : public testing::Test {
HttpPipeliningCompatibilityClientTest()
: test_server_(net::TestServer::TYPE_HTTP,
net::TestServer::kLocalhost,
- base::FilePath(FILE_PATH_LITERAL(
- "chrome/test/data/http_pipelining"))),
+ net::TestServer::GetSourceRelativePath(
+ base::FilePath(FILE_PATH_LITERAL(
+ "chrome/test/data/http_pipelining")))),
io_thread_(BrowserThread::IO, &message_loop_) {
}

Powered by Google App Engine
This is Rietveld 408576698