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

Unified Diff: content/browser/storage_partition_impl_map.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/safe_util_win.h ('k') | content/common/child_process_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl_map.h
diff --git a/content/browser/storage_partition_impl_map.h b/content/browser/storage_partition_impl_map.h
index 196a388eaeed7ac4c211ba927988baa62f267149..7f69dea489e0f0cf4594cbd6c88a99cba89518a8 100644
--- a/content/browser/storage_partition_impl_map.h
+++ b/content/browser/storage_partition_impl_map.h
@@ -15,9 +15,8 @@
#include "content/browser/storage_partition_impl.h"
#include "content/public/browser/browser_context.h"
-class FilePath;
-
namespace base {
+class FilePath;
class SequencedTaskRunner;
} // namespace base
@@ -51,7 +50,7 @@ class StoragePartitionImplMap : public base::SupportsUserData::Data {
//
// The |done| closure is executed on the calling thread when garbage
// collection is complete.
- void GarbageCollect(scoped_ptr<base::hash_set<FilePath> > active_paths,
+ void GarbageCollect(scoped_ptr<base::hash_set<base::FilePath> > active_paths,
const base::Closure& done);
void ForEach(const BrowserContext::StoragePartitionCallback& callback);
@@ -106,8 +105,9 @@ class StoragePartitionImplMap : public base::SupportsUserData::Data {
// Returns the relative path from the profile's base directory, to the
// directory that holds all the state for storage contexts in the given
// |partition_domain| and |partition_name|.
- static FilePath GetStoragePartitionPath(const std::string& partition_domain,
- const std::string& partition_name);
+ static base::FilePath GetStoragePartitionPath(
+ const std::string& partition_domain,
+ const std::string& partition_name);
// This must always be called *after* |partition| has been added to the
// partitions_.
« no previous file with comments | « content/browser/safe_util_win.h ('k') | content/common/child_process_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698