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_GLUE_WEBWIDGET_H__ | 5 #ifndef WEBKIT_GLUE_WEBWIDGET_H__ |
6 #define WEBKIT_GLUE_WEBWIDGET_H__ | 6 #define WEBKIT_GLUE_WEBWIDGET_H__ |
7 | 7 |
8 #include "base/gfx/platform_canvas.h" | |
9 #include "base/ref_counted.h" | 8 #include "base/ref_counted.h" |
| 9 #include "skia/ext/platform_canvas.h" |
10 | 10 |
11 namespace gfx { | 11 namespace gfx { |
12 class Rect; | 12 class Rect; |
13 class Size; | 13 class Size; |
14 } | 14 } |
15 | 15 |
16 class WebInputEvent; | 16 class WebInputEvent; |
17 class WebWidgetDelegate; | 17 class WebWidgetDelegate; |
18 | 18 |
19 class WebWidget : public base::RefCounted<WebWidget> { | 19 class WebWidget : public base::RefCounted<WebWidget> { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // Retrieve the status of this widget required by IME APIs. | 66 // Retrieve the status of this widget required by IME APIs. |
67 virtual bool ImeUpdateStatus(bool* enable_ime, const void** node, | 67 virtual bool ImeUpdateStatus(bool* enable_ime, const void** node, |
68 gfx::Rect* caret_rect) = 0; | 68 gfx::Rect* caret_rect) = 0; |
69 | 69 |
70 private: | 70 private: |
71 DISALLOW_EVIL_CONSTRUCTORS(WebWidget); | 71 DISALLOW_EVIL_CONSTRUCTORS(WebWidget); |
72 }; | 72 }; |
73 | 73 |
74 #endif // #ifndef WEBKIT_GLUE_WEBWIDGET_H__ | 74 #endif // #ifndef WEBKIT_GLUE_WEBWIDGET_H__ |
75 | 75 |
OLD | NEW |