OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "third_party/WebKit/public/web/WebPopupType.h" | 29 #include "third_party/WebKit/public/web/WebPopupType.h" |
30 #include "third_party/WebKit/public/web/WebTextDirection.h" | 30 #include "third_party/WebKit/public/web/WebTextDirection.h" |
31 #include "third_party/WebKit/public/web/WebTextInputInfo.h" | 31 #include "third_party/WebKit/public/web/WebTextInputInfo.h" |
32 #include "third_party/WebKit/public/web/WebTouchAction.h" | 32 #include "third_party/WebKit/public/web/WebTouchAction.h" |
33 #include "third_party/WebKit/public/web/WebWidget.h" | 33 #include "third_party/WebKit/public/web/WebWidget.h" |
34 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 34 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
35 #include "third_party/skia/include/core/SkBitmap.h" | 35 #include "third_party/skia/include/core/SkBitmap.h" |
36 #include "ui/base/ime/text_input_mode.h" | 36 #include "ui/base/ime/text_input_mode.h" |
37 #include "ui/base/ime/text_input_type.h" | 37 #include "ui/base/ime/text_input_type.h" |
38 #include "ui/base/ui_base_types.h" | 38 #include "ui/base/ui_base_types.h" |
39 #include "ui/gfx/geometry/rect.h" | |
40 #include "ui/gfx/geometry/vector2d.h" | |
41 #include "ui/gfx/geometry/vector2d_f.h" | |
42 #include "ui/gfx/native_widget_types.h" | 39 #include "ui/gfx/native_widget_types.h" |
43 #include "ui/gfx/range/range.h" | 40 #include "ui/gfx/range/range.h" |
| 41 #include "ui/gfx/rect.h" |
| 42 #include "ui/gfx/vector2d.h" |
| 43 #include "ui/gfx/vector2d_f.h" |
44 #include "ui/surface/transport_dib.h" | 44 #include "ui/surface/transport_dib.h" |
45 | 45 |
46 struct ViewHostMsg_UpdateRect_Params; | 46 struct ViewHostMsg_UpdateRect_Params; |
47 struct ViewMsg_Resize_Params; | 47 struct ViewMsg_Resize_Params; |
48 class ViewHostMsg_UpdateRect; | 48 class ViewHostMsg_UpdateRect; |
49 | 49 |
50 namespace IPC { | 50 namespace IPC { |
51 class SyncMessage; | 51 class SyncMessage; |
52 class SyncMessageFilter; | 52 class SyncMessageFilter; |
53 } | 53 } |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 ui::MenuSourceType context_menu_source_type_; | 765 ui::MenuSourceType context_menu_source_type_; |
766 bool has_host_context_menu_location_; | 766 bool has_host_context_menu_location_; |
767 gfx::Point host_context_menu_location_; | 767 gfx::Point host_context_menu_location_; |
768 | 768 |
769 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 769 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
770 }; | 770 }; |
771 | 771 |
772 } // namespace content | 772 } // namespace content |
773 | 773 |
774 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 774 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
OLD | NEW |