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

/external/webkit/WebCore/page/
H A DPluginHalter.cpp114 double nextFireInterval = static_cast<double>(m_pluginAllowedRunTime) - (currentTime() - m_oldestStartTime); local
115 m_timer.startOneShot(nextFireInterval < 0 ? 0 : nextFireInterval);
/external/webkit/WebCore/platform/cf/
H A DRunLoopTimerCF.cpp47 void RunLoopTimerBase::start(double nextFireInterval, double repeatInterval) argument
52 m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context));

Completed in 215 milliseconds