HomeSort by relevance Sort by last modified time
    Searched defs:EventRecorder (Results 1 - 3 of 3) sorted by null

  /external/chromium/base/
event_recorder.h 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();
    [all...]
event_recorder.cc 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"
    [all...]
  /external/chromium/net/tools/flip_server/
epoll_server.h 29 // A structure called 'EventRecorder' will exist when
30 // the macro is defined. See the EventRecorder class interface
731 struct EventRecorder {
733 EventRecorder() : num_records_(0), record_threshold_(10000) {}
735 ~EventRecorder() {
792 friend ostream& operator<<(ostream& os, const EventRecorder& er) {
    [all...]

Completed in 555 milliseconds