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

  /external/webkit/Source/WebCore/page/
DOMTimer.cpp 28 #include "DOMTimer.h"
44 double DOMTimer::s_minDefaultTimerInterval = 0.010; // 10 milliseconds
65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot)
82 DOMTimer::~DOMTimer()
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
90 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'.
91 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById()
    [all...]
DOMTimer.h 39 class DOMTimer : public SuspendableTimer {
42 virtual ~DOMTimer();
58 DOMTimer(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot);

Completed in 35 milliseconds