Index: content/public/browser/content_browser_client.cc |
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc |
index 2b16e490e23cf3b44f33785fffa66c462277e3de..98e0364099509de981cecbf8e5f2ed45abe64377 100644 |
--- a/content/public/browser/content_browser_client.cc |
+++ b/content/public/browser/content_browser_client.cc |
@@ -54,7 +54,7 @@ net::URLRequestContextGetter* ContentBrowserClient::CreateRequestContext( |
net::URLRequestContextGetter* |
ContentBrowserClient::CreateRequestContextForStoragePartition( |
BrowserContext* browser_context, |
- const FilePath& partition_path, |
+ const base::FilePath& partition_path, |
bool in_memory, |
scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
blob_protocol_handler, |
@@ -246,8 +246,8 @@ bool ContentBrowserClient::IsFastShutdownPossible() { |
return true; |
} |
-FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { |
- return FilePath(); |
+base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { |
+ return base::FilePath(); |
} |
std::string ContentBrowserClient::GetDefaultDownloadName() { |
@@ -266,8 +266,8 @@ bool ContentBrowserClient::AllowPepperSocketAPI( |
return false; |
} |
-FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { |
- return FilePath(); |
+base::FilePath ContentBrowserClient::GetHyphenDictionaryDirectory() { |
+ return base::FilePath(); |
} |
ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |