| Index: content/browser/storage_partition_impl.cc
 | 
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
 | 
| index 0640453289ffc9f89ed3a80bb8b3ac70f98aab16..8a764fab4de70beb32b8997a7950338ec2c8d105 100644
 | 
| --- a/content/browser/storage_partition_impl.cc
 | 
| +++ b/content/browser/storage_partition_impl.cc
 | 
| @@ -375,7 +375,7 @@ StoragePartitionImpl::StoragePartitionImpl(
 | 
|      HostZoomLevelContext* host_zoom_level_context,
 | 
|      PlatformNotificationContextImpl* platform_notification_context,
 | 
|      BackgroundSyncContext* background_sync_context,
 | 
| -    PaymentAppContext* payment_app_context,
 | 
| +    PaymentAppContextImpl* payment_app_context,
 | 
|      scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider)
 | 
|      : partition_path_(partition_path),
 | 
|        quota_manager_(quota_manager),
 | 
| @@ -515,8 +515,8 @@ std::unique_ptr<StoragePartitionImpl> StoragePartitionImpl::Create(
 | 
|        new BackgroundSyncContext();
 | 
|    background_sync_context->Init(service_worker_context);
 | 
|  
 | 
| -  scoped_refptr<PaymentAppContext> payment_app_context =
 | 
| -      new PaymentAppContext(service_worker_context);
 | 
| +  scoped_refptr<PaymentAppContextImpl> payment_app_context =
 | 
| +      new PaymentAppContextImpl(service_worker_context);
 | 
|  
 | 
|    scoped_refptr<BroadcastChannelProvider>
 | 
|        broadcast_channel_provider = new BroadcastChannelProvider();
 | 
| @@ -605,7 +605,7 @@ BackgroundSyncContext* StoragePartitionImpl::GetBackgroundSyncContext() {
 | 
|    return background_sync_context_.get();
 | 
|  }
 | 
|  
 | 
| -PaymentAppContext* StoragePartitionImpl::GetPaymentAppContext() {
 | 
| +PaymentAppContextImpl* StoragePartitionImpl::GetPaymentAppContext() {
 | 
|    return payment_app_context_.get();
 | 
|  }
 | 
|  
 | 
| 
 |