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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentAddress.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/PaymentAddress.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp b/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp
index 7fa4165b6b919ebfcf9492d20da08b2c24061e50..a90d6151579f8fa2c55c871cbc044db11ca7d511 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp
+++ b/third_party/WebKit/Source/modules/payments/PaymentAddress.cpp
@@ -17,6 +17,7 @@ PaymentAddress::PaymentAddress(mojom::blink::PaymentAddressPtr address)
, m_languageCode(address->language_code)
, m_organization(address->organization)
, m_recipient(address->recipient)
+ , m_phone(address->phone)
{
if (!m_languageCode.isEmpty() && !address->script_code.isEmpty()) {
m_languageCode.append("-");

Powered by Google App Engine
This is Rietveld 408576698