Home | History | Annotate | Download | only in modules

Lines Matching refs:Timer

9 #include "base/timer/timer.h"
20 // A simple scriptable timer that can work in one-shot or repeating mode.
21 class GIN_EXPORT Timer : public Wrappable<Timer> {
29 static Handle<Timer> Create(TimerType type, v8::Isolate* isolate,
36 Timer(v8::Isolate* isolate, bool repeating, int delay_ms,
38 virtual ~Timer();
41 base::Timer timer_;
43 base::WeakPtrFactory<Timer> weak_factory_;
45 DISALLOW_COPY_AND_ASSIGN(Timer);