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

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

Issue 2712343004: Tidy up instance time handling in SVGSMILElement (Closed)
Patch Set: Created 3 years, 10 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 | third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp » ('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.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimationElement.h b/third_party/WebKit/Source/core/svg/SVGAnimationElement.h
index 2aa9411d30109bda2882defb3c97a5d47e79e67e..50e62db40504c692ab051721f6eb88fe3b6290aa 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimationElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimationElement.h
@@ -60,9 +60,9 @@ class CORE_EXPORT SVGAnimationElement : public SVGSMILElement {
float getCurrentTime() const;
float getSimpleDuration(ExceptionState&) const;
- void beginElement();
+ void beginElement() { beginElementAt(0); }
void beginElementAt(float offset);
- void endElement();
+ void endElement() { endElementAt(0); }
void endElementAt(float offset);
DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(begin, beginEvent);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698