Searched defs:SMILTimeContainer (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.h47 class SMILTimeContainer : public RefCounted<SMILTimeContainer> { class in namespace:WebCore
49 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); }
69 SMILTimeContainer(SVGSVGElement* owner);
71 void timerFired(Timer<SMILTimeContainer>*);
89 Timer<SMILTimeContainer> m_timer;
H A DSMILTimeContainer.cpp27 #include "SMILTimeContainer.h"
45 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner) function in class:WebCore::SMILTimeContainer
51 , m_timer(this, &SMILTimeContainer::timerFired)
57 void SMILTimeContainer::begin() {}
58 void SMILTimeContainer::pause() {}
59 void SMILTimeContainer::resume() {}
60 SMILTime SMILTimeContainer::elapsed() const { return 0; }
61 bool SMILTimeContainer::isPaused() const { return false; }
62 void SMILTimeContainer
[all...]

Completed in 71 milliseconds