Add explicit base to FilePath.
This changes the "easy" content subdirectories (everything but browser, renderer, and common) and the ppapi top level directory.
Review URL: https://codereview.chromium.org/12208057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181191 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/content/shell/shell_url_request_context_getter.cc b/content/shell/shell_url_request_context_getter.cc
index 7bda6f9..b085b9e 100644
--- a/content/shell/shell_url_request_context_getter.cc
+++ b/content/shell/shell_url_request_context_getter.cc
@@ -35,7 +35,7 @@
ShellURLRequestContextGetter::ShellURLRequestContextGetter(
bool ignore_certificate_errors,
- const FilePath& base_path,
+ const base::FilePath& base_path,
MessageLoop* io_loop,
MessageLoop* file_loop)
: ignore_certificate_errors_(ignore_certificate_errors),
@@ -96,7 +96,7 @@
net::HttpAuthHandlerFactory::CreateDefault(host_resolver.get()));
storage_->set_http_server_properties(new net::HttpServerPropertiesImpl);
- FilePath cache_path = base_path_.Append(FILE_PATH_LITERAL("Cache"));
+ base::FilePath cache_path = base_path_.Append(FILE_PATH_LITERAL("Cache"));
net::HttpCache::DefaultBackend* main_backend =
new net::HttpCache::DefaultBackend(
net::DISK_CACHE,