| 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 514d0047ac5d139902cb5d8f04a2ac9fea8a09f6..af8159d90066c8f5568696d38e0c8c22834c8d9e 100644
|
| --- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
|
| @@ -113,18 +113,10 @@ void Deprecation::warnOnDeprecatedProperties(const LocalFrame* frame,
|
| }
|
|
|
| String Deprecation::deprecationMessage(CSSPropertyID unresolvedProperty) {
|
| - switch (unresolvedProperty) {
|
| - case CSSPropertyAliasMotionOffset:
|
| - return willBeRemoved("motion-offset", M58, "6390764217040896");
|
| - case CSSPropertyAliasMotionRotation:
|
| - return willBeRemoved("motion-rotation", M58, "6390764217040896");
|
| - case CSSPropertyAliasMotionPath:
|
| - case CSSPropertyMotion:
|
| - return willBeRemoved("motion-path", M58, "6390764217040896");
|
| -
|
| - 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,
|
|
|