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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentResponse.cpp

Issue 2038423002: Adding support for phone and email. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: third_party/WebKit/Source/modules/payments/PaymentResponse.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentResponse.cpp b/third_party/WebKit/Source/modules/payments/PaymentResponse.cpp
index 66362d69ad24ad5e43b0193dec218e96b7c1646d..d8466aa46cb6a62432ebef0f554e731f43f2953a 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentResponse.cpp
+++ b/third_party/WebKit/Source/modules/payments/PaymentResponse.cpp
@@ -15,6 +15,8 @@ PaymentResponse::PaymentResponse(mojom::blink::PaymentResponsePtr response, Paym
: m_methodName(response->method_name)
, m_stringifiedDetails(response->stringified_details)
, m_shippingAddress(response->shipping_address ? new PaymentAddress(std::move(response->shipping_address)) : nullptr)
+ , m_payerEmail(response->payer_email)
+ , m_payerPhone(response->payer_phone)
please use gerrit instead 2016/06/06 15:43:42 Check for email and phone in PaymentResponseTest.D
, m_paymentCompleter(paymentCompleter)
{
DCHECK(m_paymentCompleter);

Powered by Google App Engine
This is Rietveld 408576698