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

Unified Diff: webkit/dom_storage/dom_storage_context.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 | « webkit/dom_storage/dom_storage_area_unittest.cc ('k') | webkit/dom_storage/dom_storage_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/dom_storage/dom_storage_context.h
diff --git a/webkit/dom_storage/dom_storage_context.h b/webkit/dom_storage/dom_storage_context.h
index 3b48833f988ed6a91358d45ac61c83460fd39c0a..76a92b02647073097eb0ae8cd5b6f4a2a1adb979 100644
--- a/webkit/dom_storage/dom_storage_context.h
+++ b/webkit/dom_storage/dom_storage_context.h
@@ -19,10 +19,10 @@
#include "googleurl/src/gurl.h"
#include "webkit/storage/webkit_storage_export.h"
-class FilePath;
class NullableString16;
namespace base {
+class FilePath;
class Time;
}
@@ -86,18 +86,18 @@ class WEBKIT_STORAGE_EXPORT DomStorageContext
};
DomStorageContext(
- const FilePath& localstorage_directory, // empty for incognito profiles
- const FilePath& sessionstorage_directory, // empty for incognito profiles
+ const base::FilePath& localstorage_directory, // empty for incognito profiles
+ const base::FilePath& sessionstorage_directory, // empty for incognito profiles
quota::SpecialStoragePolicy* special_storage_policy,
DomStorageTaskRunner* task_runner);
// Returns the directory path for localStorage, or an empty directory, if
// there is no backing on disk.
- const FilePath& localstorage_directory() { return localstorage_directory_; }
+ const base::FilePath& localstorage_directory() { return localstorage_directory_; }
// Returns the directory path for sessionStorage, or an empty directory, if
// there is no backing on disk.
- const FilePath& sessionstorage_directory() {
+ const base::FilePath& sessionstorage_directory() {
return sessionstorage_directory_;
}
@@ -190,12 +190,12 @@ class WEBKIT_STORAGE_EXPORT DomStorageContext
StorageNamespaceMap namespaces_;
// Where localstorage data is stored, maybe empty for the incognito use case.
- FilePath localstorage_directory_;
+ base::FilePath localstorage_directory_;
// Where sessionstorage data is stored, maybe empty for the incognito use
// case. Always empty until the file-backed session storage feature is
// implemented.
- FilePath sessionstorage_directory_;
+ base::FilePath sessionstorage_directory_;
// Used to schedule sequenced background tasks.
scoped_refptr<DomStorageTaskRunner> task_runner_;
« no previous file with comments | « webkit/dom_storage/dom_storage_area_unittest.cc ('k') | webkit/dom_storage/dom_storage_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698