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

Side by Side Diff: content/browser/payments/payment_app_provider_impl.cc

Issue 2615063002: PaymentApp: Add interfaces for implementing InvokePaymentApp(). (Closed)
Patch Set: PaymentApp: Add interfaces for implementing InvokePaymentApp(). 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #include "content/browser/payments/payment_app_provider_impl.h" 5 #include "content/browser/payments/payment_app_provider_impl.h"
6 6
7 #include "content/browser/payments/payment_app_context_impl.h" 7 #include "content/browser/payments/payment_app_context_impl.h"
8 #include "content/browser/storage_partition_impl.h" 8 #include "content/browser/storage_partition_impl.h"
9 #include "content/public/browser/browser_context.h" 9 #include "content/public/browser/browser_context.h"
10 #include "content/public/browser/browser_thread.h" 10 #include "content/public/browser/browser_thread.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 BrowserThread::PostTask( 55 BrowserThread::PostTask(
56 BrowserThread::IO, FROM_HERE, 56 BrowserThread::IO, FROM_HERE,
57 base::Bind(&GetAllManifestsOnIO, payment_app_context, callback)); 57 base::Bind(&GetAllManifestsOnIO, payment_app_context, callback));
58 } 58 }
59 59
60 PaymentAppProviderImpl::PaymentAppProviderImpl() {} 60 PaymentAppProviderImpl::PaymentAppProviderImpl() {}
61 61
62 PaymentAppProviderImpl::~PaymentAppProviderImpl() {} 62 PaymentAppProviderImpl::~PaymentAppProviderImpl() {}
63 63
64 void PaymentAppProviderImpl::InvokePaymentApp(
please use gerrit instead 2017/01/09 14:42:12 Needs to be under GetAllManifests() to keep the or
zino 2017/01/09 18:06:14 When I wrote this code at first time, I kept the o
65 BrowserContext* browser_context,
66 int64_t registration_id,
67 payments::mojom::PaymentAppRequestDataPtr data) {
68 NOTIMPLEMENTED();
69 }
70
64 } // namespace content 71 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698