| Index: webkit/tools/test_shell/test_shell_request_context.cc
|
| diff --git a/webkit/tools/test_shell/test_shell_request_context.cc b/webkit/tools/test_shell/test_shell_request_context.cc
|
| index 5bdf4c954e30ae1433277232c9cc006522ea8d58..eec8e8235b3808e88605228f192c9314af19a3bf 100644
|
| --- a/webkit/tools/test_shell/test_shell_request_context.cc
|
| +++ b/webkit/tools/test_shell/test_shell_request_context.cc
|
| @@ -58,11 +58,11 @@ class TestShellHttpUserAgentSettings : public net::HttpUserAgentSettings {
|
|
|
| TestShellRequestContext::TestShellRequestContext()
|
| : ALLOW_THIS_IN_INITIALIZER_LIST(storage_(this)) {
|
| - Init(FilePath(), net::HttpCache::NORMAL, false);
|
| + Init(base::FilePath(), net::HttpCache::NORMAL, false);
|
| }
|
|
|
| TestShellRequestContext::TestShellRequestContext(
|
| - const FilePath& cache_path,
|
| + const base::FilePath& cache_path,
|
| net::HttpCache::Mode cache_mode,
|
| bool no_proxy)
|
| : ALLOW_THIS_IN_INITIALIZER_LIST(storage_(this)) {
|
| @@ -70,7 +70,7 @@ TestShellRequestContext::TestShellRequestContext(
|
| }
|
|
|
| void TestShellRequestContext::Init(
|
| - const FilePath& cache_path,
|
| + const base::FilePath& cache_path,
|
| net::HttpCache::Mode cache_mode,
|
| bool no_proxy) {
|
| storage_.set_cookie_store(new net::CookieMonster(NULL, NULL));
|
|
|