Home | History | Annotate | Download | only in base

Lines Matching defs:EventRecorder

24 EventRecorder* EventRecorder::current_ = NULL;
28 CHECK(EventRecorder::current());
29 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
34 CHECK(EventRecorder::current());
35 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam);
38 EventRecorder::~EventRecorder() {
45 bool EventRecorder::StartRecording(const FilePath& filename) {
55 DLOG(ERROR) << "EventRecorder could not open log file";
66 DLOG(ERROR) << "EventRecorder Record Hook failed";
75 void EventRecorder::StopRecording() {
80 DLOG(ERROR) << "EventRecorder Unhook failed";
96 bool EventRecorder::StartPlayback(const FilePath& filename) {
106 DLOG(ERROR) << "EventRecorder Playback could not open log file";
111 DLOG(ERROR) << "EventRecorder Playback has no records!";
135 DLOG(ERROR) << "EventRecorder Playback Hook failed";
144 void EventRecorder::StopPlayback() {
149 DLOG(ERROR) << "EventRecorder Unhook failed";
165 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
203 LRESULT EventRecorder::PlaybackWndProc(int nCode, WPARAM wParam,