| 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 444f490b4dcfdeb4352030b09ad451f0869780fe..7e38aece8ebf43a06a03fc01466527b551171662 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentAddress.h
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentAddress.h
|
| @@ -36,7 +36,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& careOf() const { return m_careOf; }
|
| + const String careOf() const { return WTF::emptyString(); }
|
| const String& phone() const { return m_phone; }
|
|
|
| DEFINE_INLINE_TRACE() {}
|
| @@ -52,7 +52,6 @@ private:
|
| String m_languageCode;
|
| String m_organization;
|
| String m_recipient;
|
| - String m_careOf;
|
| String m_phone;
|
| };
|
|
|
|
|