diff options
Diffstat (limited to 'WebCore/platform/SharedTimer.h')
-rw-r--r-- | WebCore/platform/SharedTimer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/platform/SharedTimer.h b/WebCore/platform/SharedTimer.h index a005add..5b5cd14 100644 --- a/WebCore/platform/SharedTimer.h +++ b/WebCore/platform/SharedTimer.h @@ -26,12 +26,14 @@ #ifndef SharedTimer_h #define SharedTimer_h +#include <wtf/Noncopyable.h> + namespace WebCore { // Each thread has its own single instance of shared timer, which implements this interface. // This instance is shared by all timers in the thread. // Not intended to be used directly; use the Timer class instead. - class SharedTimer { + class SharedTimer : public Noncopyable { public: virtual ~SharedTimer() {} virtual void setFiredFunction(void (*)()) = 0; |