| 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 "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 // StoragePartition interface. | 40 // StoragePartition interface. |
| 41 base::FilePath GetPath() override; | 41 base::FilePath GetPath() override; |
| 42 net::URLRequestContextGetter* GetURLRequestContext() override; | 42 net::URLRequestContextGetter* GetURLRequestContext() override; |
| 43 net::URLRequestContextGetter* GetMediaURLRequestContext() override; | 43 net::URLRequestContextGetter* GetMediaURLRequestContext() override; |
| 44 storage::QuotaManager* GetQuotaManager() override; | 44 storage::QuotaManager* GetQuotaManager() override; |
| 45 ChromeAppCacheService* GetAppCacheService() override; | 45 ChromeAppCacheService* GetAppCacheService() override; |
| 46 storage::FileSystemContext* GetFileSystemContext() override; | 46 storage::FileSystemContext* GetFileSystemContext() override; |
| 47 storage::DatabaseTracker* GetDatabaseTracker() override; | 47 storage::DatabaseTracker* GetDatabaseTracker() override; |
| 48 DOMStorageContextWrapper* GetDOMStorageContext() override; | 48 DOMStorageContextWrapper* GetDOMStorageContext() override; |
| 49 IndexedDBContextImpl* GetIndexedDBContext() override; | 49 IndexedDBContextImpl* GetIndexedDBContext() override; |
| 50 // TODO(jsbell): Expose this on the public API as well. crbug.com/466371 | 50 CacheStorageContextImpl* GetCacheStorageContext() override; |
| 51 CacheStorageContextImpl* GetCacheStorageContext(); | |
| 52 ServiceWorkerContextWrapper* GetServiceWorkerContext() override; | 51 ServiceWorkerContextWrapper* GetServiceWorkerContext() override; |
| 53 GeofencingManager* GetGeofencingManager() override; | 52 GeofencingManager* GetGeofencingManager() override; |
| 54 HostZoomMap* GetHostZoomMap() override; | 53 HostZoomMap* GetHostZoomMap() override; |
| 55 HostZoomLevelContext* GetHostZoomLevelContext() override; | 54 HostZoomLevelContext* GetHostZoomLevelContext() override; |
| 56 ZoomLevelDelegate* GetZoomLevelDelegate() override; | 55 ZoomLevelDelegate* GetZoomLevelDelegate() override; |
| 57 NavigatorConnectContextImpl* GetNavigatorConnectContext() override; | 56 NavigatorConnectContextImpl* GetNavigatorConnectContext() override; |
| 58 PlatformNotificationContextImpl* GetPlatformNotificationContext() override; | 57 PlatformNotificationContextImpl* GetPlatformNotificationContext() override; |
| 59 BackgroundSyncContextImpl* GetBackgroundSyncContext() override; | 58 BackgroundSyncContextImpl* GetBackgroundSyncContext() override; |
| 60 | 59 |
| 61 void ClearDataForOrigin(uint32 remove_mask, | 60 void ClearDataForOrigin(uint32 remove_mask, |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the | 192 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the |
| 194 // BrowserContext is destroyed, |this| will be destroyed too. | 193 // BrowserContext is destroyed, |this| will be destroyed too. |
| 195 BrowserContext* browser_context_; | 194 BrowserContext* browser_context_; |
| 196 | 195 |
| 197 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 196 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
| 198 }; | 197 }; |
| 199 | 198 |
| 200 } // namespace content | 199 } // namespace content |
| 201 | 200 |
| 202 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 201 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| OLD | NEW |