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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimationElement.idl

Issue 2243173002: SVG: Use counters for SMIL methods on animation elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGAnimationElement.idl
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimationElement.idl b/third_party/WebKit/Source/core/svg/SVGAnimationElement.idl
index d20ae51256b6c77648db6fd29c3ae210ab49df40..c83a9a400ee056e0f5c1e7074c1abb84df7ca79b 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimationElement.idl
+++ b/third_party/WebKit/Source/core/svg/SVGAnimationElement.idl
@@ -34,14 +34,14 @@ interface SVGAnimationElement : SVGElement {
attribute EventHandler onend;
attribute EventHandler onrepeat;
- [RaisesException] float getStartTime();
- float getCurrentTime();
- [RaisesException] float getSimpleDuration();
+ [MeasureAs=SVGSMILAnimationElementTiming, RaisesException] float getStartTime();
+ [MeasureAs=SVGSMILAnimationElementTiming] float getCurrentTime();
+ [MeasureAs=SVGSMILAnimationElementTiming, RaisesException] float getSimpleDuration();
- void beginElement();
- void beginElementAt(float offset);
- void endElement();
- void endElementAt(float offset);
+ [MeasureAs=SVGSMILBeginEndAnimationElement] void beginElement();
+ [MeasureAs=SVGSMILBeginEndAnimationElement] void beginElementAt(float offset);
+ [MeasureAs=SVGSMILBeginEndAnimationElement] void endElement();
+ [MeasureAs=SVGSMILBeginEndAnimationElement] void endElementAt(float offset);
};
SVGAnimationElement implements SVGTests;
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698