Chromium Code Reviews| 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 |