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

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

Issue 2352513002: PaymentRequest: Deprecate careOf attribute in PaymentAddress. (Closed)
Patch Set: test 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/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 6b7bdf860768d568065b666e066cde9b7c9f2534..1f2171cf4942f8f23212e1ecf539b4b0c0e7bf34 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -385,6 +385,9 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
case UseCounter::ScriptInvalidTypeOrLanguage:
return String::format("Fetching scripts with an invalid type/language attributes is deprecated and will be removed in %s. See https://www.chromestatus.com/feature/5760718284521472 for more details.", milestoneString(56));
+ case UseCounter::PaymentAddressCareOf:
+ return willBeRemoved("PaymentAddress.careOf", 56, "5728579069411328");
haraken 2016/09/22 00:54:42 Maybe add a comment about what the value implies.
please use gerrit instead 2016/09/22 13:22:37 +1
zino 2016/09/22 15:42:30 I left a comment but I'm not sure if you means tha
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();

Powered by Google App Engine
This is Rietveld 408576698