| OLD | NEW |
| 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_BROWSER_STORAGE_PARTITION_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| 6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/weak_ptr.h" |
| 17 #include "content/browser/appcache/chrome_appcache_service.h" | 18 #include "content/browser/appcache/chrome_appcache_service.h" |
| 18 #include "content/browser/background_sync/background_sync_context.h" | 19 #include "content/browser/background_sync/background_sync_context.h" |
| 19 #include "content/browser/broadcast_channel/broadcast_channel_provider.h" | 20 #include "content/browser/broadcast_channel/broadcast_channel_provider.h" |
| 20 #include "content/browser/cache_storage/cache_storage_context_impl.h" | 21 #include "content/browser/cache_storage/cache_storage_context_impl.h" |
| 21 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" | 22 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
| 22 #include "content/browser/host_zoom_level_context.h" | 23 #include "content/browser/host_zoom_level_context.h" |
| 23 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 24 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
| 24 #include "content/browser/notifications/platform_notification_context_impl.h" | 25 #include "content/browser/notifications/platform_notification_context_impl.h" |
| 25 #include "content/browser/service_worker/service_worker_context_wrapper.h" | 26 #include "content/browser/service_worker/service_worker_context_wrapper.h" |
| 26 #include "content/common/content_export.h" | 27 #include "content/common/content_export.h" |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 // StoragePartition's on-disk-storage. | 156 // StoragePartition's on-disk-storage. |
| 156 // | 157 // |
| 157 // If |in_memory| is true, the |relative_partition_path| is (ab)used as a way | 158 // If |in_memory| is true, the |relative_partition_path| is (ab)used as a way |
| 158 // of distinguishing different in-memory partitions, but nothing is persisted | 159 // of distinguishing different in-memory partitions, but nothing is persisted |
| 159 // on to disk. | 160 // on to disk. |
| 160 static std::unique_ptr<StoragePartitionImpl> Create( | 161 static std::unique_ptr<StoragePartitionImpl> Create( |
| 161 BrowserContext* context, | 162 BrowserContext* context, |
| 162 bool in_memory, | 163 bool in_memory, |
| 163 const base::FilePath& relative_partition_path); | 164 const base::FilePath& relative_partition_path); |
| 164 | 165 |
| 165 StoragePartitionImpl( | 166 StoragePartitionImpl(BrowserContext* browser_context, |
| 166 BrowserContext* browser_context, | 167 const base::FilePath& partition_path, |
| 167 const base::FilePath& partition_path, | 168 storage::SpecialStoragePolicy* special_storage_policy); |
| 168 storage::QuotaManager* quota_manager, | |
| 169 ChromeAppCacheService* appcache_service, | |
| 170 storage::FileSystemContext* filesystem_context, | |
| 171 storage::DatabaseTracker* database_tracker, | |
| 172 DOMStorageContextWrapper* dom_storage_context, | |
| 173 IndexedDBContextImpl* indexed_db_context, | |
| 174 CacheStorageContextImpl* cache_storage_context, | |
| 175 ServiceWorkerContextWrapper* service_worker_context, | |
| 176 storage::SpecialStoragePolicy* special_storage_policy, | |
| 177 HostZoomLevelContext* host_zoom_level_context, | |
| 178 PlatformNotificationContextImpl* platform_notification_context, | |
| 179 BackgroundSyncContext* background_sync_context, | |
| 180 scoped_refptr<BroadcastChannelProvider>broadcast_channel_provider); | |
| 181 | 169 |
| 182 // We will never have both remove_origin be populated and a cookie_matcher. | 170 // We will never have both remove_origin be populated and a cookie_matcher. |
| 183 void ClearDataImpl(uint32_t remove_mask, | 171 void ClearDataImpl(uint32_t remove_mask, |
| 184 uint32_t quota_storage_remove_mask, | 172 uint32_t quota_storage_remove_mask, |
| 185 const GURL& remove_origin, | 173 const GURL& remove_origin, |
| 186 const OriginMatcherFunction& origin_matcher, | 174 const OriginMatcherFunction& origin_matcher, |
| 187 const CookieMatcherFunction& cookie_matcher, | 175 const CookieMatcherFunction& cookie_matcher, |
| 188 net::URLRequestContextGetter* rq_context, | 176 net::URLRequestContextGetter* rq_context, |
| 189 const base::Time begin, | 177 const base::Time begin, |
| 190 const base::Time end, | 178 const base::Time end, |
| 191 const base::Closure& callback); | 179 const base::Closure& callback); |
| 192 | 180 |
| 193 // Used by StoragePartitionImplMap. | 181 // Used by StoragePartitionImplMap. |
| 194 // | 182 // |
| 195 // TODO(ajwong): These should be taken in the constructor and in Create() but | 183 // TODO(ajwong): These should be taken in the constructor and in Create() but |
| 196 // because the URLRequestContextGetter still lives in Profile with a tangled | 184 // because the URLRequestContextGetter still lives in Profile with a tangled |
| 197 // initialization, if we try to retrieve the URLRequestContextGetter() | 185 // initialization, if we try to retrieve the URLRequestContextGetter() |
| 198 // before the default StoragePartition is created, we end up reentering the | 186 // before the default StoragePartition is created, we end up reentering the |
| 199 // construction and double-initializing. For now, we retain the legacy | 187 // construction and double-initializing. For now, we retain the legacy |
| 200 // behavior while allowing StoragePartitionImpl to expose these accessors by | 188 // behavior while allowing StoragePartitionImpl to expose these accessors by |
| 201 // letting StoragePartitionImplMap call these two private settings at the | 189 // letting StoragePartitionImplMap call these two private settings at the |
| 202 // appropriate time. These should move back into the constructor once | 190 // appropriate time. These should move back into the constructor once |
| 203 // URLRequestContextGetter's lifetime is sorted out. We should also move the | 191 // URLRequestContextGetter's lifetime is sorted out. We should also move the |
| 204 // PostCreateInitialization() out of StoragePartitionImplMap. | 192 // PostCreateInitialization() out of StoragePartitionImplMap. |
| 205 void SetURLRequestContext( | 193 void SetURLRequestContext( |
| 206 net::URLRequestContextGetter* url_request_context); | 194 net::URLRequestContextGetter* url_request_context); |
| 207 void SetMediaURLRequestContext( | 195 void SetMediaURLRequestContext( |
| 208 net::URLRequestContextGetter* media_url_request_context); | 196 net::URLRequestContextGetter* media_url_request_context); |
| 209 | 197 |
| 198 // Function used by the quota system to ask the embedder for the |
| 199 // storage configuration info. |
| 200 void GetQuotaSettings(const base::FilePath& profile_path, |
| 201 bool is_incognito, |
| 202 const storage::OptionalQuotaSettingsCallback& callback); |
| 203 |
| 210 base::FilePath partition_path_; | 204 base::FilePath partition_path_; |
| 211 scoped_refptr<net::URLRequestContextGetter> url_request_context_; | 205 scoped_refptr<net::URLRequestContextGetter> url_request_context_; |
| 212 scoped_refptr<net::URLRequestContextGetter> media_url_request_context_; | 206 scoped_refptr<net::URLRequestContextGetter> media_url_request_context_; |
| 213 scoped_refptr<storage::QuotaManager> quota_manager_; | 207 scoped_refptr<storage::QuotaManager> quota_manager_; |
| 214 scoped_refptr<ChromeAppCacheService> appcache_service_; | 208 scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 215 scoped_refptr<storage::FileSystemContext> filesystem_context_; | 209 scoped_refptr<storage::FileSystemContext> filesystem_context_; |
| 216 scoped_refptr<storage::DatabaseTracker> database_tracker_; | 210 scoped_refptr<storage::DatabaseTracker> database_tracker_; |
| 217 scoped_refptr<DOMStorageContextWrapper> dom_storage_context_; | 211 scoped_refptr<DOMStorageContextWrapper> dom_storage_context_; |
| 218 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; | 212 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; |
| 219 scoped_refptr<CacheStorageContextImpl> cache_storage_context_; | 213 scoped_refptr<CacheStorageContextImpl> cache_storage_context_; |
| 220 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_; | 214 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_; |
| 221 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; | 215 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_; |
| 222 scoped_refptr<HostZoomLevelContext> host_zoom_level_context_; | 216 scoped_refptr<HostZoomLevelContext> host_zoom_level_context_; |
| 223 scoped_refptr<PlatformNotificationContextImpl> platform_notification_context_; | 217 scoped_refptr<PlatformNotificationContextImpl> platform_notification_context_; |
| 224 scoped_refptr<BackgroundSyncContext> background_sync_context_; | 218 scoped_refptr<BackgroundSyncContext> background_sync_context_; |
| 225 scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider_; | 219 scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider_; |
| 226 | 220 |
| 227 mojo::BindingSet<mojom::StoragePartitionService> bindings_; | 221 mojo::BindingSet<mojom::StoragePartitionService> bindings_; |
| 228 | 222 |
| 229 // Raw pointer that should always be valid. The BrowserContext owns the | 223 // Raw pointer that should always be valid. The BrowserContext owns the |
| 230 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the | 224 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the |
| 231 // BrowserContext is destroyed, |this| will be destroyed too. | 225 // BrowserContext is destroyed, |this| will be destroyed too. |
| 232 BrowserContext* browser_context_; | 226 BrowserContext* browser_context_; |
| 233 | 227 |
| 228 base::WeakPtrFactory<StoragePartitionImpl> weak_factory_; |
| 229 |
| 234 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 230 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
| 235 }; | 231 }; |
| 236 | 232 |
| 237 } // namespace content | 233 } // namespace content |
| 238 | 234 |
| 239 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 235 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| OLD | NEW |