Index: content/browser/storage_partition_impl.h |
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h |
index 584f2dbad8627e8f01544dfaf7454c26cd72f2a1..34dcfa60a89585d64156dfa333f0d299d553476f 100644 |
--- a/content/browser/storage_partition_impl.h |
+++ b/content/browser/storage_partition_impl.h |
@@ -22,6 +22,7 @@ |
#include "content/browser/host_zoom_level_context.h" |
#include "content/browser/indexed_db/indexed_db_context_impl.h" |
#include "content/browser/notifications/platform_notification_context_impl.h" |
+#include "content/browser/payments/payment_app_context.h" |
#include "content/browser/service_worker/service_worker_context_wrapper.h" |
#include "content/common/content_export.h" |
#include "content/common/storage_partition_service.mojom.h" |
@@ -74,6 +75,7 @@ class CONTENT_EXPORT StoragePartitionImpl |
PlatformNotificationContextImpl* GetPlatformNotificationContext() override; |
BackgroundSyncContext* GetBackgroundSyncContext(); |
+ PaymentAppContext* GetPaymentAppContext(); |
BroadcastChannelProvider* GetBroadcastChannelProvider(); |
// mojom::StoragePartitionService interface. |
@@ -177,6 +179,7 @@ class CONTENT_EXPORT StoragePartitionImpl |
HostZoomLevelContext* host_zoom_level_context, |
PlatformNotificationContextImpl* platform_notification_context, |
BackgroundSyncContext* background_sync_context, |
+ PaymentAppContext* payment_app_context, |
scoped_refptr<BroadcastChannelProvider>broadcast_channel_provider); |
// We will never have both remove_origin be populated and a cookie_matcher. |
@@ -222,6 +225,7 @@ class CONTENT_EXPORT StoragePartitionImpl |
scoped_refptr<HostZoomLevelContext> host_zoom_level_context_; |
scoped_refptr<PlatformNotificationContextImpl> platform_notification_context_; |
scoped_refptr<BackgroundSyncContext> background_sync_context_; |
+ scoped_refptr<PaymentAppContext> payment_app_context_; |
scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider_; |
mojo::BindingSet<mojom::StoragePartitionService> bindings_; |