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 25 matching lines...) Expand all Loading... |
36 #include "content/common/input/synthetic_gesture_packet.h" | 36 #include "content/common/input/synthetic_gesture_packet.h" |
37 #include "content/common/view_message_enums.h" | 37 #include "content/common/view_message_enums.h" |
38 #include "content/public/browser/readback_types.h" | 38 #include "content/public/browser/readback_types.h" |
39 #include "content/public/browser/render_widget_host.h" | 39 #include "content/public/browser/render_widget_host.h" |
40 #include "content/public/common/page_zoom.h" | 40 #include "content/public/common/page_zoom.h" |
41 #include "ipc/ipc_listener.h" | 41 #include "ipc/ipc_listener.h" |
42 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 42 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
43 #include "ui/base/ime/text_input_mode.h" | 43 #include "ui/base/ime/text_input_mode.h" |
44 #include "ui/base/ime/text_input_type.h" | 44 #include "ui/base/ime/text_input_type.h" |
45 #include "ui/events/gesture_detection/gesture_provider_config_helper.h" | 45 #include "ui/events/gesture_detection/gesture_provider_config_helper.h" |
46 #include "ui/events/latency_info.h" | |
47 #include "ui/gfx/native_widget_types.h" | 46 #include "ui/gfx/native_widget_types.h" |
| 47 #include "ui/latency_info/latency_info.h" |
48 | 48 |
49 struct FrameHostMsg_HittestData_Params; | 49 struct FrameHostMsg_HittestData_Params; |
50 struct ViewHostMsg_SelectionBounds_Params; | 50 struct ViewHostMsg_SelectionBounds_Params; |
51 struct ViewHostMsg_UpdateRect_Params; | 51 struct ViewHostMsg_UpdateRect_Params; |
52 | 52 |
53 namespace base { | 53 namespace base { |
54 class RefCountedBytes; | 54 class RefCountedBytes; |
55 } | 55 } |
56 | 56 |
57 namespace blink { | 57 namespace blink { |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
818 base::TimeDelta new_content_rendering_delay_; | 818 base::TimeDelta new_content_rendering_delay_; |
819 | 819 |
820 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 820 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
821 | 821 |
822 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 822 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
823 }; | 823 }; |
824 | 824 |
825 } // namespace content | 825 } // namespace content |
826 | 826 |
827 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 827 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |