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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentAddress.h

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.h
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAddress.h b/third_party/WebKit/Source/modules/payments/PaymentAddress.h
index 3c7a2dcdac01323739d3f7e4fc0f3da3f4ab8f77..39d58b573bf623959b154c3e0c20e589a3751a15 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAddress.h
+++ b/third_party/WebKit/Source/modules/payments/PaymentAddress.h
@@ -33,6 +33,7 @@ public:
const String& languageCode() const { return m_languageCode; }
const String& organization() const { return m_organization; }
const String& recipient() const { return m_recipient; }
+ const String& phone() const { return m_phone; }
please use gerrit instead 2016/06/06 15:43:42 Let's alter PaymentAddress fields in http://crbug.
DEFINE_INLINE_TRACE() {}
@@ -47,6 +48,7 @@ private:
String m_languageCode;
String m_organization;
String m_recipient;
+ String m_phone;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698