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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

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
« no previous file with comments | « ios/web/payments/payment_request.cc ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 07965515e7b6a4c34df7cc4efa683fb63f52bdb3..d14a7253a2df332729a62f1175638448d8ae98f7 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -386,6 +386,11 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
case UseCounter::ScriptInvalidTypeOrLanguage:
return willBeRemoved("Fetching scripts with an invalid type/language attributes", M56, "5760718284521472");
+ // The PaymentAddress.careOf was deprecated and then will be removed in M56.
+ // Please see: https://www.chromestatus.com/features/5728579069411328
+ case UseCounter::PaymentAddressCareOf:
+ return willBeRemoved("PaymentAddress.careOf", M56, "5728579069411328");
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();
« no previous file with comments | « ios/web/payments/payment_request.cc ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698