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> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 storage::FileSystemContext* GetFileSystemContext() override; | 66 storage::FileSystemContext* GetFileSystemContext() override; |
67 storage::DatabaseTracker* GetDatabaseTracker() override; | 67 storage::DatabaseTracker* GetDatabaseTracker() override; |
68 DOMStorageContextWrapper* GetDOMStorageContext() override; | 68 DOMStorageContextWrapper* GetDOMStorageContext() override; |
69 IndexedDBContextImpl* GetIndexedDBContext() override; | 69 IndexedDBContextImpl* GetIndexedDBContext() override; |
70 CacheStorageContextImpl* GetCacheStorageContext() override; | 70 CacheStorageContextImpl* GetCacheStorageContext() override; |
71 ServiceWorkerContextWrapper* GetServiceWorkerContext() override; | 71 ServiceWorkerContextWrapper* GetServiceWorkerContext() override; |
72 HostZoomMap* GetHostZoomMap() override; | 72 HostZoomMap* GetHostZoomMap() override; |
73 HostZoomLevelContext* GetHostZoomLevelContext() override; | 73 HostZoomLevelContext* GetHostZoomLevelContext() override; |
74 ZoomLevelDelegate* GetZoomLevelDelegate() override; | 74 ZoomLevelDelegate* GetZoomLevelDelegate() override; |
75 PlatformNotificationContextImpl* GetPlatformNotificationContext() override; | 75 PlatformNotificationContextImpl* GetPlatformNotificationContext() override; |
| 76 PaymentAppContextImpl* GetPaymentAppContext() override; |
76 | 77 |
77 BackgroundSyncContext* GetBackgroundSyncContext(); | 78 BackgroundSyncContext* GetBackgroundSyncContext(); |
78 PaymentAppContextImpl* GetPaymentAppContext(); | |
79 BroadcastChannelProvider* GetBroadcastChannelProvider(); | 79 BroadcastChannelProvider* GetBroadcastChannelProvider(); |
80 | 80 |
81 // mojom::StoragePartitionService interface. | 81 // mojom::StoragePartitionService interface. |
82 void OpenLocalStorage( | 82 void OpenLocalStorage( |
83 const url::Origin& origin, | 83 const url::Origin& origin, |
84 mojo::InterfaceRequest<mojom::LevelDBWrapper> request) override; | 84 mojo::InterfaceRequest<mojom::LevelDBWrapper> request) override; |
85 | 85 |
86 void ClearDataForOrigin(uint32_t remove_mask, | 86 void ClearDataForOrigin(uint32_t remove_mask, |
87 uint32_t quota_storage_remove_mask, | 87 uint32_t quota_storage_remove_mask, |
88 const GURL& storage_origin, | 88 const GURL& storage_origin, |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the | 234 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the |
235 // BrowserContext is destroyed, |this| will be destroyed too. | 235 // BrowserContext is destroyed, |this| will be destroyed too. |
236 BrowserContext* browser_context_; | 236 BrowserContext* browser_context_; |
237 | 237 |
238 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 238 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
239 }; | 239 }; |
240 | 240 |
241 } // namespace content | 241 } // namespace content |
242 | 242 |
243 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 243 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
OLD | NEW |