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

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

Issue 2352513002: PaymentRequest: Deprecate careOf attribute in PaymentAddress. (Closed)
Patch Set: PaymentRequest: Deprecate careOf attribute in PaymentAddress. Created 4 years, 3 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 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;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/modules/payments/PaymentAddress.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698