HomeSort by relevance Sort by last modified time
    Searched refs:SharedTimer (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
SharedTimer.h 38 class PLATFORM_EXPORT SharedTimer {
39 WTF_MAKE_NONCOPYABLE(SharedTimer); WTF_MAKE_FAST_ALLOCATED;
41 SharedTimer() { }
42 virtual ~SharedTimer() {}
55 class PLATFORM_EXPORT MainThreadSharedTimer : public SharedTimer {
ThreadTimers.h 37 class SharedTimer;
46 // On a thread different then main, we should set the thread's instance of the SharedTimer.
47 void setSharedTimer(SharedTimer*);
61 SharedTimer* m_sharedTimer; // External object, can be a run loop on a worker thread. Normally set/reset by worker thread.
ThreadTimers.cpp 30 #include "platform/SharedTimer.h"
64 // A worker thread may initialize SharedTimer after some timers are created.
65 // Also, SharedTimer can be replaced with 0 before all timers are destroyed.
66 void ThreadTimers::setSharedTimer(SharedTimer* sharedTimer)
74 m_sharedTimer = sharedTimer;
76 if (sharedTimer) {
blink_platform.target.darwin-arm.mk 85 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 84 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 84 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
blink_platform.target.linux-arm.mk 85 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
blink_platform.target.linux-mips.mk 84 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
blink_platform.target.linux-x86.mk 84 third_party/WebKit/Source/platform/SharedTimer.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerRunLoop.cpp 38 #include "platform/SharedTimer.h"
70 class WorkerSharedTimer : public SharedTimer {
78 // SharedTimer interface.

Completed in 84 milliseconds