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

Unified Diff: Source/core/svg/animation/SVGSMILElement.h

Issue 312503003: Convert SVGSMILElement::m_interval{Begin,End} into a SMILInterval (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/animation/SVGSMILElement.h
diff --git a/Source/core/svg/animation/SVGSMILElement.h b/Source/core/svg/animation/SVGSMILElement.h
index f995d1950e7a0cdc49a78ebb8a7714cbf131065f..5404dd13aec8fbf31a6fe9d2b0dc2989d96bd8ac 100644
--- a/Source/core/svg/animation/SVGSMILElement.h
+++ b/Source/core/svg/animation/SVGSMILElement.h
@@ -87,7 +87,7 @@ public:
SMILTime elapsed() const;
- SMILTime intervalBegin() const { return m_intervalBegin; }
+ SMILTime intervalBegin() const { return m_interval.begin; }
SMILTime previousIntervalBegin() const { return m_previousIntervalBegin; }
SMILTime simpleDuration() const;
@@ -244,8 +244,7 @@ private:
Vector<SMILTimeWithOrigin> m_endTimes;
// This is the upcoming or current interval
- SMILTime m_intervalBegin;
- SMILTime m_intervalEnd;
+ SMILInterval m_interval;
SMILTime m_previousIntervalBegin;
« no previous file with comments | « no previous file | Source/core/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698