| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "content/renderer/devtools/render_widget_screen_metrics_emulator_delega
te.h" | 28 #include "content/renderer/devtools/render_widget_screen_metrics_emulator_delega
te.h" |
| 29 #include "content/renderer/gpu/render_widget_compositor_delegate.h" | 29 #include "content/renderer/gpu/render_widget_compositor_delegate.h" |
| 30 #include "content/renderer/input/render_widget_input_handler.h" | 30 #include "content/renderer/input/render_widget_input_handler.h" |
| 31 #include "content/renderer/input/render_widget_input_handler_delegate.h" | 31 #include "content/renderer/input/render_widget_input_handler_delegate.h" |
| 32 #include "content/renderer/message_delivery_policy.h" | 32 #include "content/renderer/message_delivery_policy.h" |
| 33 #include "content/renderer/mouse_lock_dispatcher.h" | 33 #include "content/renderer/mouse_lock_dispatcher.h" |
| 34 #include "content/renderer/render_widget_mouse_lock_dispatcher.h" | 34 #include "content/renderer/render_widget_mouse_lock_dispatcher.h" |
| 35 #include "ipc/ipc_listener.h" | 35 #include "ipc/ipc_listener.h" |
| 36 #include "ipc/ipc_sender.h" | 36 #include "ipc/ipc_sender.h" |
| 37 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 37 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| 38 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 38 #include "third_party/WebKit/public/platform/WebRect.h" | 39 #include "third_party/WebKit/public/platform/WebRect.h" |
| 40 #include "third_party/WebKit/public/platform/WebTextInputInfo.h" |
| 39 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 41 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 40 #include "third_party/WebKit/public/web/WebInputEvent.h" | |
| 41 #include "third_party/WebKit/public/web/WebPopupType.h" | 42 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 42 #include "third_party/WebKit/public/web/WebTextDirection.h" | 43 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 43 #include "third_party/WebKit/public/web/WebTextInputInfo.h" | |
| 44 #include "third_party/WebKit/public/web/WebTouchAction.h" | 44 #include "third_party/WebKit/public/web/WebTouchAction.h" |
| 45 #include "third_party/WebKit/public/web/WebWidget.h" | 45 #include "third_party/WebKit/public/web/WebWidget.h" |
| 46 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 46 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
| 47 #include "ui/base/ime/text_input_mode.h" | 47 #include "ui/base/ime/text_input_mode.h" |
| 48 #include "ui/base/ime/text_input_type.h" | 48 #include "ui/base/ime/text_input_type.h" |
| 49 #include "ui/base/ui_base_types.h" | 49 #include "ui/base/ui_base_types.h" |
| 50 #include "ui/gfx/geometry/rect.h" | 50 #include "ui/gfx/geometry/rect.h" |
| 51 #include "ui/gfx/geometry/vector2d_f.h" | 51 #include "ui/gfx/geometry/vector2d_f.h" |
| 52 #include "ui/gfx/native_widget_types.h" | 52 #include "ui/gfx/native_widget_types.h" |
| 53 #include "ui/gfx/range/range.h" | 53 #include "ui/gfx/range/range.h" |
| (...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 // Stores edit commands associated to the next key event. | 830 // Stores edit commands associated to the next key event. |
| 831 // Will be cleared as soon as the next key event is processed. | 831 // Will be cleared as soon as the next key event is processed. |
| 832 EditCommands edit_commands_; | 832 EditCommands edit_commands_; |
| 833 | 833 |
| 834 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 834 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 835 }; | 835 }; |
| 836 | 836 |
| 837 } // namespace content | 837 } // namespace content |
| 838 | 838 |
| 839 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 839 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |