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

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

Issue 23551005: Revert 219709 "Remove the Extensions URLRequestContext." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
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 CookieStore;
25 class URLRequestContextGetter; 24 class URLRequestContextGetter;
26 } 25 }
27 26
28 namespace quota { 27 namespace quota {
29 class QuotaManager; 28 class QuotaManager;
30 } 29 }
31 30
32 namespace webkit_database { 31 namespace webkit_database {
33 class DatabaseTracker; 32 class DatabaseTracker;
34 } 33 }
35 34
36 namespace content { 35 namespace content {
37 36
38 class BrowserContext; 37 class BrowserContext;
39 class CookieStoreMap; 38 class IndexedDBContext;
40 class DOMStorageContext; 39 class DOMStorageContext;
41 class IndexedDBContext;
42 40
43 // Defines what persistent state a child process can access. 41 // Defines what persistent state a child process can access.
44 // 42 //
45 // The StoragePartition defines the view each child process has of the 43 // The StoragePartition defines the view each child process has of the
46 // persistent state inside the BrowserContext. This is used to implement 44 // persistent state inside the BrowserContext. This is used to implement
47 // isolated storage where a renderer with isolated storage cannot see 45 // isolated storage where a renderer with isolated storage cannot see
48 // the cookies, localStorage, etc., that normal web renderers have access to. 46 // the cookies, localStorage, etc., that normal web renderers have access to.
49 class StoragePartition { 47 class StoragePartition {
50 public: 48 public:
51 virtual base::FilePath GetPath() = 0; 49 virtual base::FilePath GetPath() = 0;
52 virtual net::URLRequestContextGetter* GetURLRequestContext() = 0; 50 virtual net::URLRequestContextGetter* GetURLRequestContext() = 0;
53 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() = 0; 51 virtual net::URLRequestContextGetter* GetMediaURLRequestContext() = 0;
54 virtual quota::QuotaManager* GetQuotaManager() = 0; 52 virtual quota::QuotaManager* GetQuotaManager() = 0;
55 virtual appcache::AppCacheService* GetAppCacheService() = 0; 53 virtual appcache::AppCacheService* GetAppCacheService() = 0;
56 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0; 54 virtual fileapi::FileSystemContext* GetFileSystemContext() = 0;
57 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0; 55 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() = 0;
58 virtual DOMStorageContext* GetDOMStorageContext() = 0; 56 virtual DOMStorageContext* GetDOMStorageContext() = 0;
59 virtual IndexedDBContext* GetIndexedDBContext() = 0; 57 virtual IndexedDBContext* GetIndexedDBContext() = 0;
60 virtual net::CookieStore* GetCookieStoreForScheme(
61 const std::string& scheme) = 0;
62 58
63 enum RemoveDataMask { 59 enum RemoveDataMask {
64 REMOVE_DATA_MASK_APPCACHE = 1 << 0, 60 REMOVE_DATA_MASK_APPCACHE = 1 << 0,
65 REMOVE_DATA_MASK_COOKIES = 1 << 1, 61 REMOVE_DATA_MASK_COOKIES = 1 << 1,
66 REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 2, 62 REMOVE_DATA_MASK_FILE_SYSTEMS = 1 << 2,
67 REMOVE_DATA_MASK_INDEXEDDB = 1 << 3, 63 REMOVE_DATA_MASK_INDEXEDDB = 1 << 3,
68 REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 4, 64 REMOVE_DATA_MASK_LOCAL_STORAGE = 1 << 4,
69 REMOVE_DATA_MASK_SHADER_CACHE = 1 << 5, 65 REMOVE_DATA_MASK_SHADER_CACHE = 1 << 5,
70 REMOVE_DATA_MASK_WEBSQL = 1 << 6, 66 REMOVE_DATA_MASK_WEBSQL = 1 << 6,
71 REMOVE_DATA_MASK_WEBRTC_IDENTITY = 1 << 7, 67 REMOVE_DATA_MASK_WEBRTC_IDENTITY = 1 << 7,
(...skipping 11 matching lines...) Expand all
83 QUOTA_MANAGED_STORAGE_MASK_SYNCABLE = 1 << 2, 79 QUOTA_MANAGED_STORAGE_MASK_SYNCABLE = 1 << 2,
84 80
85 QUOTA_MANAGED_STORAGE_MASK_ALL = -1 81 QUOTA_MANAGED_STORAGE_MASK_ALL = -1
86 }; 82 };
87 83
88 // Starts an asynchronous task that does a best-effort clear the data 84 // Starts an asynchronous task that does a best-effort clear the data
89 // corresponding to the given |remove_mask| and |quota_storage_remove_mask| 85 // corresponding to the given |remove_mask| and |quota_storage_remove_mask|
90 // inside this StoragePartition for the given |storage_origin|. 86 // inside this StoragePartition for the given |storage_origin|.
91 // Note session dom storage is not cleared even if you specify 87 // Note session dom storage is not cleared even if you specify
92 // REMOVE_DATA_MASK_LOCAL_STORAGE. 88 // REMOVE_DATA_MASK_LOCAL_STORAGE.
89 //
90 // TODO(ajwong): Right now, the embedder may have some
91 // URLRequestContextGetter objects that the StoragePartition does not know
92 // about. This will no longer be the case when we resolve
93 // http://crbug.com/159193. Remove |request_context_getter| when that bug
94 // is fixed.
93 virtual void ClearDataForOrigin(uint32 remove_mask, 95 virtual void ClearDataForOrigin(uint32 remove_mask,
94 uint32 quota_storage_remove_mask, 96 uint32 quota_storage_remove_mask,
95 const GURL& storage_origin) = 0; 97 const GURL& storage_origin,
98 net::URLRequestContextGetter* rq_context) = 0;
96 99
97 // Similar to ClearDataForOrigin(), but deletes all data out of the 100 // Similar to ClearDataForOrigin(), but deletes all data out of the
98 // StoragePartition rather than just the data related to this origin. 101 // StoragePartition rather than just the data related to this origin.
99 virtual void ClearDataForUnboundedRange(uint32 remove_mask, 102 virtual void ClearDataForUnboundedRange(uint32 remove_mask,
100 uint32 quota_storage_remove_mask) = 0; 103 uint32 quota_storage_remove_mask) = 0;
101 104
102 // Similar to ClearDataForOrigin(), but deletes all the data out of the 105 // Similar to ClearDataForOrigin(), but deletes all the data out of the
103 // StoragePartion from between the given |begin| and |end| dates rather 106 // StoragePartion from between the given |begin| and |end| dates rather
104 // then just the data related to this origin. 107 // then just the data related to this origin.
105 virtual void ClearDataForRange(uint32 remove_mask, 108 virtual void ClearDataForRange(uint32 remove_mask,
106 uint32 quota_storage_remove_mask, 109 uint32 quota_storage_remove_mask,
107 const base::Time& begin, 110 const base::Time& begin,
108 const base::Time& end, 111 const base::Time& end,
109 const base::Closure& callback) = 0; 112 const base::Closure& callback) = 0;
110 113
111 protected: 114 protected:
112 virtual ~StoragePartition() {} 115 virtual ~StoragePartition() {}
113 }; 116 };
114 117
115 } // namespace content 118 } // namespace content
116 119
117 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 120 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
OLDNEW
« no previous file with comments | « trunk/src/content/public/browser/cookie_store_factory.h ('k') | trunk/src/content/public/common/content_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698