Home
last modified time | relevance | path

Searched refs:m_desiredFrameStartTime (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DBitmapImage.cpp51 , m_desiredFrameStartTime(0) in BitmapImage()
424 if (!m_desiredFrameStartTime) in startAnimation()
425 m_desiredFrameStartTime = time; in startAnimation()
443 m_desiredFrameStartTime += currentDuration; in startAnimation()
449 if ((time - m_desiredFrameStartTime) > cAnimationResyncCutoff) in startAnimation()
450 m_desiredFrameStartTime = time + currentDuration; in startAnimation()
462 if (nextFrame == 0 && m_repetitionsComplete == 0 && m_desiredFrameStartTime < time) in startAnimation()
463 m_desiredFrameStartTime = time; in startAnimation()
465 if (!catchUpIfNecessary || time < m_desiredFrameStartTime) { in startAnimation()
468 m_frameTimer->startOneShot(std::max(m_desiredFrameStartTime - time, 0.)); in startAnimation()
[all …]
DBitmapImage.h170 …double m_desiredFrameStartTime; // The system time at which we hope to see the next call to start… variable