Lines Matching defs:EventRecorder
31 class EventRecorder {
33 // Get the singleton EventRecorder.
35 static EventRecorder* current() {
37 current_ = new EventRecorder();
49 // Is the EventRecorder currently recording.
59 // Is the EventRecorder currently playing.
63 // C-style callbacks for the EventRecorder.
70 // Create a new EventRecorder. Events are saved to the file filename.
73 explicit EventRecorder()
83 ~EventRecorder();
85 static EventRecorder* current_; // Our singleton.
97 DISALLOW_EVIL_CONSTRUCTORS(EventRecorder);