Searched defs:animationWasRunning (Results 1 - 1 of 1) sorted by relevance
/external/webkit/WebKit/win/ |
H A D | WebFrame.cpp | 1121 HRESULT WebFrame::pauseAnimation(BSTR animationName, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning) argument 1123 if (!node || !animationWasRunning) 1126 *animationWasRunning = FALSE; 1140 *animationWasRunning = controller->pauseAnimationAtTime(domNode->node()->renderer(), String(animationName, SysStringLen(animationName)), secondsFromNow); 1167 HRESULT WebFrame::pauseSVGAnimation(BSTR elementId, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning) argument 1169 if (!node || !animationWasRunning) 1172 *animationWasRunning = FALSE; 1187 *animationWasRunning = document->accessSVGExtensions()->sampleAnimationAtTime(String(elementId, SysStringLen(elementId)), static_cast<SVGSMILElement*>(domNode->node()), secondsFromNow); 1189 *animationWasRunning = FALSE;
|
Completed in 35 milliseconds