| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/frame/Deprecation.h" | 5 #include "core/frame/Deprecation.h" |
| 6 | 6 |
| 7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
| 8 #include "core/dom/ExecutionContext.h" | 8 #include "core/dom/ExecutionContext.h" |
| 9 #include "core/frame/FrameConsole.h" | 9 #include "core/frame/FrameConsole.h" |
| 10 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 switch (unresolved_property) { | 120 switch (unresolved_property) { |
| 121 case CSSPropertyAliasMotionOffset: | 121 case CSSPropertyAliasMotionOffset: |
| 122 return replacedWillBeRemoved("motion-offset", "offset-distance", M58, | 122 return replacedWillBeRemoved("motion-offset", "offset-distance", M58, |
| 123 "6390764217040896"); | 123 "6390764217040896"); |
| 124 case CSSPropertyAliasMotionRotation: | 124 case CSSPropertyAliasMotionRotation: |
| 125 return replacedWillBeRemoved("motion-rotation", "offset-rotate", M58, | 125 return replacedWillBeRemoved("motion-rotation", "offset-rotate", M58, |
| 126 "6390764217040896"); | 126 "6390764217040896"); |
| 127 case CSSPropertyAliasMotionPath: | 127 case CSSPropertyAliasMotionPath: |
| 128 return replacedWillBeRemoved("motion-path", "offset-path", M58, | 128 return replacedWillBeRemoved("motion-path", "offset-path", M58, |
| 129 "6390764217040896"); | 129 "6390764217040896"); |
| 130 case CSSPropertyMotion: | |
| 131 return replacedWillBeRemoved("motion", "offset", M58, "6390764217040896"); | |
| 132 case CSSPropertyOffsetRotation: | 130 case CSSPropertyOffsetRotation: |
| 133 return replacedWillBeRemoved("offset-rotation", "offset-rotate", M58, | 131 return replacedWillBeRemoved("offset-rotation", "offset-rotate", M58, |
| 134 "6390764217040896"); | 132 "6390764217040896"); |
| 135 | 133 |
| 136 default: | 134 default: |
| 137 return g_empty_string; | 135 return g_empty_string; |
| 138 } | 136 } |
| 139 } | 137 } |
| 140 | 138 |
| 141 void Deprecation::CountDeprecation(const LocalFrame* frame, | 139 void Deprecation::CountDeprecation(const LocalFrame* frame, |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 return willBeRemoved("RTCPeerConnection.getStreamById()", M62, | 446 return willBeRemoved("RTCPeerConnection.getStreamById()", M62, |
| 449 "5751819573657600"); | 447 "5751819573657600"); |
| 450 | 448 |
| 451 // Features that aren't deprecated don't have a deprecation message. | 449 // Features that aren't deprecated don't have a deprecation message. |
| 452 default: | 450 default: |
| 453 return String(); | 451 return String(); |
| 454 } | 452 } |
| 455 } | 453 } |
| 456 | 454 |
| 457 } // namespace blink | 455 } // namespace blink |
| OLD | NEW |