/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMWindowTimers.cpp | 37 #include "core/frame/DOMTimer.h" 45 return DOMTimer::install(eventTarget.executionContext(), action, timeout, true); 50 return DOMTimer::install(eventTarget.executionContext(), action, timeout, false); 56 DOMTimer::removeByID(context, timeoutID); 62 DOMTimer::removeByID(context, timeoutID);
|
DOMTimer.h | 41 class DOMTimer FINAL : public SuspendableTimer { 47 virtual ~DOMTimer(); 63 static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID) 65 return adoptPtr(new DOMTimer(context, action, timeout, singleShot, timeoutID)); 68 DOMTimer(ExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot, int timeoutID);
|
DOMTimer.cpp | 28 #include "core/frame/DOMTimer.h" 58 double DOMTimer::hiddenPageAlignmentInterval() 65 double DOMTimer::visiblePageAlignmentInterval() 71 int DOMTimer::install(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) 78 WTF_LOG(Timers, "DOMTimer::install: timeoutID = %d, timeout = %d, singleShot = %d", timeoutID, timeout, singleShot ? 1 : 0); 82 void DOMTimer::removeByID(ExecutionContext* context, int timeoutID) 84 WTF_LOG(Timers, "DOMTimer::removeByID: timeoutID = %d", timeoutID); 92 DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID) 111 DOMTimer::~DOMTimer( [all...] |
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
NullExecutionContext.cpp | 10 #include "core/frame/DOMTimer.h" 39 return DOMTimer::visiblePageAlignmentInterval();
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ExecutionContext.h | 36 #include "core/frame/DOMTimer.h" 144 friend class DOMTimer; // For installNewTimeout() and removeTimeoutByID() below. 154 // Implementation details for DOMTimer. No other classes should call these functions. 156 void removeTimeoutByID(int timeoutID); // This makes underlying DOMTimer instance destructed. 161 typedef HashMap<int, OwnPtr<DOMTimer> > TimeoutMap;
|
ExecutionContext.cpp | 192 TimeoutMap::AddResult result = m_timeouts.add(timeoutID, DOMTimer::create(this, action, timeout, singleShot, timeoutID)); 194 DOMTimer* timer = result.storedValue->value.get();
|
Document.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
Page.cpp | 31 #include "core/frame/DOMTimer.h" 136 , m_timerAlignmentInterval(DOMTimer::visiblePageAlignmentInterval()) 463 setTimerAlignmentInterval(DOMTimer::visiblePageAlignmentInterval()); 465 setTimerAlignmentInterval(DOMTimer::hiddenPageAlignmentInterval());
|
/external/chromium_org/third_party/WebKit/Source/core/workers/ |
WorkerGlobalScope.cpp | 149 return DOMTimer::visiblePageAlignmentInterval();
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_remaining.target.darwin-arm.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.darwin-arm64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.darwin-mips.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.darwin-mips64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.darwin-x86.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.darwin-x86_64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-arm.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-arm64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-mips.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-mips64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-x86.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |
webcore_remaining.target.linux-x86_64.mk | 342 third_party/WebKit/Source/core/frame/DOMTimer.cpp \ [all...] |