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

Side by Side Diff: content/browser/storage_partition_impl.h

Issue 2609103002: PaymentApp: Add PaymentAppProvider class. (Closed)
Patch Set: Remove override keyword Created 3 years, 11 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
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_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
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;
77 76
78 BackgroundSyncContext* GetBackgroundSyncContext(); 77 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
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_
OLDNEW
« no previous file with comments | « content/browser/payments/payment_app_provider_impl_unittest.cc ('k') | content/public/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698