OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ |
6 #define WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/task.h" | 9 #include "base/task.h" |
10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
11 #include "gfx/native_widget_types.h" | |
12 #include "gfx/rect.h" | |
13 #include "skia/ext/platform_canvas.h" | 11 #include "skia/ext/platform_canvas.h" |
| 12 #include "ui/gfx/native_widget_types.h" |
| 13 #include "ui/gfx/rect.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Size; | 16 class Size; |
17 } | 17 } |
18 | 18 |
19 namespace WebKit { | 19 namespace WebKit { |
20 class WebWidget; | 20 class WebWidget; |
21 class WebWidgetClient; | 21 class WebWidgetClient; |
22 struct WebScreenInfo; | 22 struct WebScreenInfo; |
23 } | 23 } |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 150 |
151 #ifndef NDEBUG | 151 #ifndef NDEBUG |
152 bool painting_; | 152 bool painting_; |
153 #endif | 153 #endif |
154 | 154 |
155 private: | 155 private: |
156 ScopedRunnableMethodFactory<WebWidgetHost> factory_; | 156 ScopedRunnableMethodFactory<WebWidgetHost> factory_; |
157 }; | 157 }; |
158 | 158 |
159 #endif // WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ | 159 #endif // WEBKIT_TOOLS_TEST_SHELL_WEBWIDGET_HOST_H_ |
OLD | NEW |