| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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" | 46 #include "ui/events/latency_info.h" |
| 47 #include "ui/gfx/native_widget_types.h" | 47 #include "ui/gfx/native_widget_types.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_TextInputState_Params; | 51 struct ViewHostMsg_TextInputState_Params; |
| 52 struct ViewHostMsg_UpdateRect_Params; | 52 struct ViewHostMsg_UpdateRect_Params; |
| 53 | 53 |
| 54 namespace base { |
| 55 class RefCountedBytes; |
| 56 } |
| 57 |
| 54 namespace blink { | 58 namespace blink { |
| 55 class WebInputEvent; | 59 class WebInputEvent; |
| 56 #if defined(OS_ANDROID) | 60 #if defined(OS_ANDROID) |
| 57 class WebLayer; | 61 class WebLayer; |
| 58 #endif | 62 #endif |
| 59 class WebMouseEvent; | 63 class WebMouseEvent; |
| 60 struct WebCompositionUnderline; | 64 struct WebCompositionUnderline; |
| 61 struct WebScreenInfo; | 65 struct WebScreenInfo; |
| 62 } | 66 } |
| 63 | 67 |
| (...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 scoped_ptr<base::ElapsedTimer> mouse_wheel_coalesce_timer_; | 842 scoped_ptr<base::ElapsedTimer> mouse_wheel_coalesce_timer_; |
| 839 | 843 |
| 840 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 844 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 841 | 845 |
| 842 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 846 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 843 }; | 847 }; |
| 844 | 848 |
| 845 } // namespace content | 849 } // namespace content |
| 846 | 850 |
| 847 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 851 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |