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

Side by Side Diff: content/public/browser/storage_partition.h

Issue 37843003: BrowsingDataRemover, (re)use StoragePartition deletion code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments form mkwst@. Created 7 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « content/browser/storage_partition_impl_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
6 #define CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 6 #define CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 12
13 class GURL; 13 class GURL;
14 14
15 namespace appcache { 15 namespace appcache {
16 class AppCacheService; 16 class AppCacheService;
17 } 17 }
18 18
19 namespace fileapi { 19 namespace fileapi {
20 class FileSystemContext; 20 class FileSystemContext;
21 } 21 }
22 22
23 namespace net { 23 namespace net {
24 class URLRequestContextGetter; 24 class URLRequestContextGetter;
25 } 25 }
26 26
27 namespace quota { 27 namespace quota {
28 class QuotaManager; 28 class QuotaManager;
29 class SpecialStoragePolicy;
29 } 30 }
30 31
31 namespace webkit_database { 32 namespace webkit_database {
32 class DatabaseTracker; 33 class DatabaseTracker;
33 } 34 }
34 35
35 namespace content { 36 namespace content {
36 37
37 class BrowserContext; 38 class BrowserContext;
38 class IndexedDBContext; 39 class IndexedDBContext;
39 class DOMStorageContext; 40 class DOMStorageContext;
40 41
41 // Defines what persistent state a child process can access. 42 // Defines what persistent state a child process can access.
42 // 43 //
43 // The StoragePartition defines the view each child process has of the 44 // The StoragePartition defines the view each child process has of the
44 // persistent state inside the BrowserContext. This is used to implement 45 // persistent state inside the BrowserContext. This is used to implement
45 // isolated storage where a renderer with isolated storage cannot see 46 // isolated storage where a renderer with isolated storage cannot see
46 // the cookies, localStorage, etc., that normal web renderers have access to. 47 // the cookies, localStorage, etc., that normal web renderers have access to.
47 class StoragePartition { 48 class StoragePartition {
48 public: 49 public:
50 // A callback type to check if a given origin matches a storage policy.
51 // Can be passed empty/null where used, which means the origin will always
52 // match.
53 typedef base::Callback<bool(const GURL&,
54 quota::SpecialStoragePolicy*)>
55 OriginMatcherFunction;
56
49 virtual base::FilePath GetPath() = 0; 57 virtual base::FilePath GetPath() = 0;
50 virtual net::URLRequestContextGetter* GetURLRequestContext() = 0; 58 virtual net::URLRequestContextGetter* GetURLRequestContext() = 0;
51 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() = 0; 59 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() = 0;
52 virtual quota::QuotaManager* GetQuotaManager() = 0; 60 virtual quota::QuotaManager* GetQuotaManager() = 0;
53 virtual appcache::AppCacheService* GetAppCacheService() = 0; 61 virtual appcache::AppCacheService* GetAppCacheService() = 0;
54 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0; 62 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
55 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0; 63 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0;
56 virtual DOMStorageContext* GetDOMStorageContext() = 0; 64 virtual DOMStorageContext* GetDOMStorageContext() = 0;
57 virtual IndexedDBContext* GetIndexedDBContext() = 0; 65 virtual IndexedDBContext* GetIndexedDBContext() = 0;
58 66
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // Similar to ClearDataForOrigin(), but deletes all data out of the 108 // Similar to ClearDataForOrigin(), but deletes all data out of the
101 // StoragePartition rather than just the data related to this origin. 109 // StoragePartition rather than just the data related to this origin.
102 virtual void ClearDataForUnboundedRange(uint32 remove_mask, 110 virtual void ClearDataForUnboundedRange(uint32 remove_mask,
103 uint32 quota_storage_remove_mask) = 0; 111 uint32 quota_storage_remove_mask) = 0;
104 112
105 // Similar to ClearDataForOrigin(), but deletes all the data out of the 113 // Similar to ClearDataForOrigin(), but deletes all the data out of the
106 // StoragePartion from between the given |begin| and |end| dates rather 114 // StoragePartion from between the given |begin| and |end| dates rather
107 // then just the data related to this origin. 115 // then just the data related to this origin.
108 virtual void ClearDataForRange(uint32 remove_mask, 116 virtual void ClearDataForRange(uint32 remove_mask,
109 uint32 quota_storage_remove_mask, 117 uint32 quota_storage_remove_mask,
110 const base::Time& begin, 118 const base::Time begin,
111 const base::Time& end, 119 const base::Time end,
112 const base::Closure& callback) = 0; 120 const base::Closure& callback) = 0;
113 121
122 // Similar to ClearDataForOrigin(), with a time range.
123 virtual void ClearDataForOriginWithinRange(
jam 2013/10/30 18:15:24 can we combine this with the above, and have a GUR
lazyboy 2013/10/30 19:55:35 Sure, I've merged 3 of the 4 ClearData* functions
124 uint32 remove_mask,
125 uint32 quota_storage_remove_mask,
126 const GURL& storage_origin,
127 const OriginMatcherFunction& origin_matcher,
128 const base::Time begin,
129 const base::Time end,
130 const base::Closure& callback) = 0;
131
114 protected: 132 protected:
115 virtual ~StoragePartition() {} 133 virtual ~StoragePartition() {}
116 }; 134 };
117 135
118 } // namespace content 136 } // namespace content
119 137
120 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 138 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
OLDNEW
« no previous file with comments | « content/browser/storage_partition_impl_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698