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

Unified Diff: Source/core/frame/UseCounter.cpp

Issue 1145243010: Report Pointer Lock webkitMovementX/Y attributes as deprecated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@gclient
Patch Set: merge TOT Created 5 years, 6 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 | « Source/core/events/MouseEvent.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index 049a0e092c1e191d785ee16567ad874156d5ba9f..8fb948fb86274a3274f8af0488a1f3c9ced384e9 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -917,6 +917,12 @@ String UseCounter::deprecationMessage(Feature feature)
case CSSSelectorPseudoShadow:
return "::shadow pseudo-element is deprecated. See https://www.chromestatus.com/features/6750456638341120 for more details.";
+ case PrefixedMouseEventMovementX:
+ return replacedBy("webkitMovementX", "movementX");
+
+ case PrefixedMouseEventMovementY:
+ return replacedBy("webkitMovementY", "movementY");
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();
« no previous file with comments | « Source/core/events/MouseEvent.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698