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 <deque> | 8 #include <deque> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "content/browser/renderer_host/synthetic_gesture_controller.h" | 28 #include "content/browser/renderer_host/synthetic_gesture_controller.h" |
29 #include "content/common/browser_rendering_stats.h" | 29 #include "content/common/browser_rendering_stats.h" |
30 #include "content/common/view_message_enums.h" | 30 #include "content/common/view_message_enums.h" |
31 #include "content/port/browser/event_with_latency_info.h" | 31 #include "content/port/browser/event_with_latency_info.h" |
32 #include "content/port/common/input_event_ack_state.h" | 32 #include "content/port/common/input_event_ack_state.h" |
33 #include "content/public/browser/render_widget_host.h" | 33 #include "content/public/browser/render_widget_host.h" |
34 #include "content/public/common/page_zoom.h" | 34 #include "content/public/common/page_zoom.h" |
35 #include "ipc/ipc_listener.h" | 35 #include "ipc/ipc_listener.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/latency_info.h" | 38 #include "ui/events/latency_info.h" |
39 #include "ui/gfx/native_widget_types.h" | 39 #include "ui/gfx/native_widget_types.h" |
40 | 40 |
41 class WebCursor; | 41 class WebCursor; |
42 struct AcceleratedSurfaceMsg_BufferPresented_Params; | 42 struct AcceleratedSurfaceMsg_BufferPresented_Params; |
43 struct ViewHostMsg_CompositorSurfaceBuffersSwapped_Params; | 43 struct ViewHostMsg_CompositorSurfaceBuffersSwapped_Params; |
44 struct ViewHostMsg_UpdateRect_Params; | 44 struct ViewHostMsg_UpdateRect_Params; |
45 struct ViewHostMsg_TextInputState_Params; | 45 struct ViewHostMsg_TextInputState_Params; |
46 struct ViewHostMsg_BeginSmoothScroll_Params; | 46 struct ViewHostMsg_BeginSmoothScroll_Params; |
47 | 47 |
48 namespace base { | 48 namespace base { |
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 int64 last_input_number_; | 934 int64 last_input_number_; |
935 | 935 |
936 BrowserRenderingStats rendering_stats_; | 936 BrowserRenderingStats rendering_stats_; |
937 | 937 |
938 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 938 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
939 }; | 939 }; |
940 | 940 |
941 } // namespace content | 941 } // namespace content |
942 | 942 |
943 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 943 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |