Home | History | Annotate | Download | only in base

Lines Matching refs:EventRecorder

23 EventRecorder* EventRecorder::current_ = NULL;
27 CHECK(EventRecorder::current());
28 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
33 CHECK(EventRecorder::current());
34 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam);
37 EventRecorder::~EventRecorder() {
44 bool EventRecorder::StartRecording(const FilePath& filename) {
54 DLOG(ERROR) << "EventRecorder could not open log file";
65 DLOG(ERROR) << "EventRecorder Record Hook failed";
74 void EventRecorder::StopRecording() {
79 DLOG(ERROR) << "EventRecorder Unhook failed";
95 bool EventRecorder::StartPlayback(const FilePath& filename) {
105 DLOG(ERROR) << "EventRecorder Playback could not open log file";
110 DLOG(ERROR) << "EventRecorder Playback has no records!";
134 DLOG(ERROR) << "EventRecorder Playback Hook failed";
143 void EventRecorder::StopPlayback() {
148 DLOG(ERROR) << "EventRecorder Unhook failed";
164 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
202 LRESULT EventRecorder::PlaybackWndProc(int nCode, WPARAM wParam,