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

Unified Diff: content/public/browser/content_browser_client.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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: 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(
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/devtools_http_handler_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698