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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 struct FrameHostMsg_HittestData_Params; | 50 struct FrameHostMsg_HittestData_Params; |
51 struct ViewHostMsg_SelectionBounds_Params; | 51 struct ViewHostMsg_SelectionBounds_Params; |
52 struct ViewHostMsg_UpdateRect_Params; | 52 struct ViewHostMsg_UpdateRect_Params; |
53 | 53 |
54 namespace base { | 54 namespace base { |
55 class RefCountedBytes; | 55 class RefCountedBytes; |
56 } | 56 } |
57 | 57 |
58 namespace blink { | 58 namespace blink { |
59 class WebInputEvent; | 59 class WebInputEvent; |
60 #if defined(OS_ANDROID) | |
61 class WebLayer; | |
62 #endif | |
63 class WebMouseEvent; | 60 class WebMouseEvent; |
64 struct WebCompositionUnderline; | 61 struct WebCompositionUnderline; |
65 } | 62 } |
66 | 63 |
67 namespace cc { | |
68 class CompositorFrameAck; | |
69 } | |
70 | |
71 #if defined(OS_MACOSX) | 64 #if defined(OS_MACOSX) |
72 namespace device { | 65 namespace device { |
73 class PowerSaveBlocker; | 66 class PowerSaveBlocker; |
74 } // namespace device | 67 } // namespace device |
75 #endif | 68 #endif |
76 | 69 |
77 namespace gfx { | 70 namespace gfx { |
78 class Range; | 71 class Range; |
79 } | 72 } |
80 | 73 |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
862 #endif | 855 #endif |
863 | 856 |
864 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 857 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
865 | 858 |
866 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 859 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
867 }; | 860 }; |
868 | 861 |
869 } // namespace content | 862 } // namespace content |
870 | 863 |
871 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 864 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |