| Index: content/public/test/browser_test_base.cc
|
| diff --git a/content/public/test/browser_test_base.cc b/content/public/test/browser_test_base.cc
|
| index 1124adabbe2e87a488bc29f6c6a154667c3fae77..cd9af610375968386effa6665f3f291cfa0a1999 100644
|
| --- a/content/public/test/browser_test_base.cc
|
| +++ b/content/public/test/browser_test_base.cc
|
| @@ -84,12 +84,12 @@ void BrowserTestBase::ProxyRunTestOnMainThreadLoop() {
|
| RunTestOnMainThreadLoop();
|
| }
|
|
|
| -void BrowserTestBase::CreateTestServer(const char* test_server_base) {
|
| +void BrowserTestBase::CreateTestServer(const FilePath& test_server_base) {
|
| CHECK(!test_server_.get());
|
| test_server_.reset(new net::TestServer(
|
| net::TestServer::TYPE_HTTP,
|
| net::TestServer::kLocalhost,
|
| - FilePath().AppendASCII(test_server_base)));
|
| + test_server_base));
|
| }
|
|
|
| } // namespace content
|
|
|