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

Unified Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp

Issue 2261443002: Replace SMILTime with double for elapsed time in SMILTimeContainer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@smilcontainer-canscheduleframe-pred
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 | « no previous file | third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
index 25f0201a1fe2d56271e087ddd65f6a293c9d889f..3fa1dbddc34c8c41aeb9aa7f5156d89fd7cc1b36 100644
--- a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
@@ -548,7 +548,7 @@ bool SVGSVGElement::animationsPaused() const
float SVGSVGElement::getCurrentTime() const
{
- return narrowPrecisionToFloat(m_timeContainer->elapsed().value());
+ return narrowPrecisionToFloat(m_timeContainer->elapsed());
}
void SVGSVGElement::setCurrentTime(float seconds)
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698