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

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

Issue 1734863003: Remove webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 a3ad08754356dde3ce23a9cb2f9e03201cb1461e..8744e7d741dd337324cca1e3dc4d050ba2a42d3c 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -56,12 +56,9 @@ void Deprecation::warnOnDeprecatedProperties(const LocalFrame* frame, CSSPropert
String Deprecation::deprecationMessage(CSSPropertyID unresolvedProperty)
{
- switch (unresolvedProperty) {
- case CSSPropertyWebkitBackgroundComposite:
- return willBeRemoved("'-webkit-background-composite'", 51, "6607299456008192");
- default:
- return emptyString();
- }
+ // TODO: Add a switch here when there are properties that we intend to deprecate.
+ // Returning an empty string for now.
+ return emptyString();
}
void Deprecation::countDeprecation(const LocalFrame* frame, UseCounter::Feature feature)
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698