| 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/vector2d.h" |
| 39 #include "ui/gfx/native_widget_types.h" | 40 #include "ui/gfx/native_widget_types.h" |
| 40 #include "ui/gfx/range/range.h" | 41 #include "ui/gfx/range/range.h" |
| 41 #include "ui/gfx/rect.h" | 42 #include "ui/gfx/rect.h" |
| 42 #include "ui/gfx/vector2d.h" | |
| 43 #include "ui/gfx/vector2d_f.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 } | 52 } |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 | 704 |
| 705 ui::MenuSourceType context_menu_source_type_; | 705 ui::MenuSourceType context_menu_source_type_; |
| 706 gfx::Point touch_editing_context_menu_location_; | 706 gfx::Point touch_editing_context_menu_location_; |
| 707 | 707 |
| 708 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 708 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 709 }; | 709 }; |
| 710 | 710 |
| 711 } // namespace content | 711 } // namespace content |
| 712 | 712 |
| 713 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 713 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |