Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Side by Side Diff: base/event_recorder.h

Issue 6759017: iwyu: Cleanup in the following files: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright again. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/environment.h ('k') | base/event_recorder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_EVENT_RECORDER_H_ 5 #ifndef BASE_EVENT_RECORDER_H_
6 #define BASE_EVENT_RECORDER_H_ 6 #define BASE_EVENT_RECORDER_H_
7 #pragma once 7 #pragma once
8 8
9 #if defined(OS_WIN)
10 #include <windows.h>
11 #include <stdio.h>
12 #endif
13
14 #include "base/base_api.h" 9 #include "base/base_api.h"
15 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "build/build_config.h"
12
13 #if defined(OS_WIN)
14 #include <stdio.h>
15 #include <string.h>
16 #include <windows.h>
17 #endif
16 18
17 class FilePath; 19 class FilePath;
18 20
19 namespace base { 21 namespace base {
20 22
21 // A class for recording and playing back keyboard and mouse input events. 23 // A class for recording and playing back keyboard and mouse input events.
22 // 24 //
23 // Note - if you record events, and the playback with the windows in 25 // Note - if you record events, and the playback with the windows in
24 // different sizes or positions, the playback will fail. When 26 // different sizes or positions, the playback will fail. When
25 // recording and playing, you should move the relevant windows 27 // recording and playing, you should move the relevant windows
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 #endif 101 #endif
100 int playback_first_msg_time_; 102 int playback_first_msg_time_;
101 int playback_start_time_; 103 int playback_start_time_;
102 104
103 DISALLOW_COPY_AND_ASSIGN(EventRecorder); 105 DISALLOW_COPY_AND_ASSIGN(EventRecorder);
104 }; 106 };
105 107
106 } // namespace base 108 } // namespace base
107 109
108 #endif // BASE_EVENT_RECORDER_H_ 110 #endif // BASE_EVENT_RECORDER_H_
OLDNEW
« no previous file with comments | « base/environment.h ('k') | base/event_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698