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

Unified Diff: content/browser/storage_partition_impl.h

Issue 12213066: Use base namespace for FilePath in content/browser (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
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.h
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
index 46daacd78f65ef9ed4a079b737b3f6428bcdbc93..6de28ed2de7ee00b791759f6edb64ee3d67aa449 100644
--- a/content/browser/storage_partition_impl.h
+++ b/content/browser/storage_partition_impl.h
@@ -20,7 +20,7 @@ class StoragePartitionImpl : public StoragePartition {
virtual ~StoragePartitionImpl();
// StoragePartition interface.
- virtual FilePath GetPath() OVERRIDE;
+ virtual base::FilePath GetPath() OVERRIDE;
virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
virtual net::URLRequestContextGetter* GetMediaURLRequestContext() OVERRIDE;
virtual quota::QuotaManager* GetQuotaManager() OVERRIDE;
@@ -45,10 +45,10 @@ class StoragePartitionImpl : public StoragePartition {
// on to disk.
static StoragePartitionImpl* Create(BrowserContext* context,
bool in_memory,
- const FilePath& profile_path);
+ const base::FilePath& profile_path);
StoragePartitionImpl(
- const FilePath& partition_path,
+ const base::FilePath& partition_path,
quota::QuotaManager* quota_manager,
ChromeAppCacheService* appcache_service,
fileapi::FileSystemContext* filesystem_context,
@@ -72,7 +72,7 @@ class StoragePartitionImpl : public StoragePartition {
void SetMediaURLRequestContext(
net::URLRequestContextGetter* media_url_request_context);
- FilePath partition_path_;
+ base::FilePath partition_path_;
scoped_refptr<net::URLRequestContextGetter> url_request_context_;
scoped_refptr<net::URLRequestContextGetter> media_url_request_context_;
scoped_refptr<quota::QuotaManager> quota_manager_;
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698