OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ | 5 #ifndef CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ |
6 #define CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ | 6 #define CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #if defined(OS_WIN) | 12 #if defined(OS_WIN) |
13 #include <wtypes.h> | 13 #include <wtypes.h> |
14 #endif | 14 #endif |
15 | 15 |
16 #include "base/gfx/native_widget_types.h" | 16 #include "app/gfx/native_widget_types.h" |
17 #include "base/gfx/point.h" | 17 #include "base/gfx/point.h" |
18 #include "base/keyboard_codes.h" | 18 #include "base/keyboard_codes.h" |
19 | 19 |
20 #if defined(TOOLKIT_VIEWS) | 20 #if defined(TOOLKIT_VIEWS) |
21 namespace views { | 21 namespace views { |
22 class View; | 22 class View; |
23 } | 23 } |
24 #endif | 24 #endif |
25 | 25 |
26 class Task; | 26 class Task; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 #elif defined(OS_LINUX) | 87 #elif defined(OS_LINUX) |
88 GtkWidget* widget, | 88 GtkWidget* widget, |
89 #endif | 89 #endif |
90 MouseButton button, | 90 MouseButton button, |
91 int state, | 91 int state, |
92 Task* task); | 92 Task* task); |
93 | 93 |
94 } // ui_controls | 94 } // ui_controls |
95 | 95 |
96 #endif // CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ | 96 #endif // CHROME_BROWSER_AUTOMATION_UI_CONTROLS_H_ |
OLD | NEW |