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

Unified Diff: ios/chrome/browser/payments/payment_request_coordinator.mm

Issue 2712053003: [Payment Request] Displays Contact Info in the payment summary view (Closed)
Patch Set: Addressed comments Created 3 years, 10 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/payments/payment_request_coordinator.mm
diff --git a/ios/chrome/browser/payments/payment_request_coordinator.mm b/ios/chrome/browser/payments/payment_request_coordinator.mm
index ac8af1f0b0400e8b34ce27c499a7ec8b7e48d5bf..e198fd96817a00b58d7e22ce131109bd96353e69 100644
--- a/ios/chrome/browser/payments/payment_request_coordinator.mm
+++ b/ios/chrome/browser/payments/payment_request_coordinator.mm
@@ -200,7 +200,7 @@ class FullCardRequester
card.billing_address_id(), _paymentRequest->billing_profiles());
if (address) {
paymentResponse.details.billing_address =
- payment_request_util::PaymentAddressFromAutofillProfile(address);
+ payment_request_util::GetPaymentAddressFromAutofillProfile(address);
}
}
@@ -357,7 +357,8 @@ class FullCardRequester
_pendingShippingAddress = shippingAddress;
web::PaymentAddress address =
- payment_request_util::PaymentAddressFromAutofillProfile(shippingAddress);
+ payment_request_util::GetPaymentAddressFromAutofillProfile(
+ shippingAddress);
[_delegate paymentRequestCoordinator:self didSelectShippingAddress:address];
}

Powered by Google App Engine
This is Rietveld 408576698