HomeSort by relevance Sort by last modified time
    Searched defs:activeAnimations (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h 25 #include "core/animation/ActiveAnimations.h"
105 ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); }
106 void setActiveAnimations(PassOwnPtrWillBeRawPtr<ActiveAnimations> activeAnimations)
108 m_activeAnimations = activeAnimations;
143 OwnPtrWillBeMember<ActiveAnimations> m_activeAnimations;
Element.cpp 338 ActiveAnimations* Element::activeAnimations() const
341 return elementRareData()->activeAnimations();
345 ActiveAnimations& Element::ensureActiveAnimations()
348 if (!rareData.activeAnimations())
349 rareData.setActiveAnimations(adoptPtrWillBeNoop(new ActiveAnimations()));
350 return *rareData.activeAnimations();
358 ActiveAnimations* activeAnimations = elementRareData()->activeAnimations();
    [all...]

Completed in 289 milliseconds