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

  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.h 47 class SMILTimeContainer : public RefCounted<SMILTimeContainer> {
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;
SMILTimeContainer.cpp 27 #include "SMILTimeContainer.h"
45 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner)
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::timerFired(Timer<SMILTimeContainer>*) {
    [all...]

Completed in 53 milliseconds