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

Unified Diff: ios/chrome/browser/ui/payments/payment_request_coordinator.h

Issue 2866793002: [Payment Request] Refactors PaymentRequestCoordinator. (Closed)
Patch Set: Rebase. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/payments/payment_request_coordinator.h
diff --git a/ios/chrome/browser/ui/payments/payment_request_coordinator.h b/ios/chrome/browser/ui/payments/payment_request_coordinator.h
index 938259a2aba7bb2c1286ff9300098265de68233b..9fb6c1f800d90d266893d658780d0e518aa3b24e 100644
--- a/ios/chrome/browser/ui/payments/payment_request_coordinator.h
+++ b/ios/chrome/browser/ui/payments/payment_request_coordinator.h
@@ -34,7 +34,6 @@ struct PaymentAddress;
namespace web {
class PaymentDetails;
class PaymentShippingOption;
-class PaymentResponse;
} // namespace web
@class PaymentRequestCoordinator;
@@ -51,9 +50,11 @@ class PaymentResponse;
- (void)paymentRequestCoordinatorDidSelectSettings:
(PaymentRequestCoordinator*)coordinator;
-// Notifies the delegate that the user has confirmed the payment request.
+// Notifies the delegate that the user has completed the payment request.
- (void)paymentRequestCoordinator:(PaymentRequestCoordinator*)coordinator
- didConfirmWithPaymentResponse:(web::PaymentResponse)paymentResponse;
+ didCompletePaymentRequest:(PaymentRequest*)paymentRequest
+ card:(const autofill::CreditCard&)card
+ cvc:(const base::string16&)cvc;
marq (ping after 24h) 2017/05/09 09:00:33 The rules for using initialisms and other abbrevia
macourteau 2017/05/09 15:21:52 Done.
// Notifies the delegate that the user has selected a shipping address.
- (void)paymentRequestCoordinator:(PaymentRequestCoordinator*)coordinator

Powered by Google App Engine
This is Rietveld 408576698