| 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "content/common/input/synthetic_gesture_packet.h" | 40 #include "content/common/input/synthetic_gesture_packet.h" |
| 41 #include "content/common/view_message_enums.h" | 41 #include "content/common/view_message_enums.h" |
| 42 #include "content/public/browser/render_widget_host.h" | 42 #include "content/public/browser/render_widget_host.h" |
| 43 #include "content/public/common/page_zoom.h" | 43 #include "content/public/common/page_zoom.h" |
| 44 #include "content/public/common/url_constants.h" | 44 #include "content/public/common/url_constants.h" |
| 45 #include "ipc/ipc_listener.h" | 45 #include "ipc/ipc_listener.h" |
| 46 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 46 #include "third_party/WebKit/public/platform/WebDisplayMode.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/events/gesture_detection/gesture_provider_config_helper.h" | 49 #include "ui/events/gesture_detection/gesture_provider_config_helper.h" |
| 50 #include "ui/events/latency_info.h" | |
| 51 #include "ui/gfx/native_widget_types.h" | 50 #include "ui/gfx/native_widget_types.h" |
| 51 #include "ui/latency/latency_info.h" |
| 52 | 52 |
| 53 class SkBitmap; | 53 class SkBitmap; |
| 54 struct FrameHostMsg_HittestData_Params; | 54 struct FrameHostMsg_HittestData_Params; |
| 55 struct ViewHostMsg_SelectionBounds_Params; | 55 struct ViewHostMsg_SelectionBounds_Params; |
| 56 struct ViewHostMsg_UpdateRect_Params; | 56 struct ViewHostMsg_UpdateRect_Params; |
| 57 | 57 |
| 58 namespace blink { | 58 namespace blink { |
| 59 class WebInputEvent; | 59 class WebInputEvent; |
| 60 class WebMouseEvent; | 60 class WebMouseEvent; |
| 61 struct WebCompositionUnderline; | 61 struct WebCompositionUnderline; |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 uint32_t last_compositor_frame_sink_id_ = 0; | 949 uint32_t last_compositor_frame_sink_id_ = 0; |
| 950 | 950 |
| 951 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 951 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 952 | 952 |
| 953 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 953 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 954 }; | 954 }; |
| 955 | 955 |
| 956 } // namespace content | 956 } // namespace content |
| 957 | 957 |
| 958 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 958 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |