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

Unified Diff: Source/core/animation/ElementAnimation.idl

Issue 198693002: Web Animations API: Add use counter for Element.animate (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Re-add UseCounter.h entry PrefixedGamepad Created 6 years, 9 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 | « no previous file | Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ElementAnimation.idl
diff --git a/Source/core/animation/ElementAnimation.idl b/Source/core/animation/ElementAnimation.idl
index e5c5137854939fac5adad3b4820e86d63dd63989..2a888e39d0c41455846ab613570107e7c8d8b152 100644
--- a/Source/core/animation/ElementAnimation.idl
+++ b/Source/core/animation/ElementAnimation.idl
@@ -31,7 +31,7 @@
[
RuntimeEnabled=WebAnimationsAPI,
] partial interface Element {
- Animation animate(sequence<Dictionary> keyframes, Dictionary timingInput);
- Animation animate(sequence<Dictionary> keyframes, double timingInput);
- Animation animate(sequence<Dictionary> keyframes);
+ [MeasureAs=ElementAnimateKeyframeListEffectObjectTiming] Animation animate(sequence<Dictionary> keyframes, Dictionary timingInput);
+ [MeasureAs=ElementAnimateKeyframeListEffectDoubleTiming] Animation animate(sequence<Dictionary> keyframes, double timingInput);
+ [MeasureAs=ElementAnimateKeyframeListEffectNoTiming] Animation animate(sequence<Dictionary> keyframes);
};
« no previous file with comments | « no previous file | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698