OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 class RendererAccessibility; | 139 class RendererAccessibility; |
140 class RendererCdmManager; | 140 class RendererCdmManager; |
141 class RendererMediaPlayerManager; | 141 class RendererMediaPlayerManager; |
142 class RendererMediaSessionManager; | 142 class RendererMediaSessionManager; |
143 class RendererPpapiHost; | 143 class RendererPpapiHost; |
144 class RendererSurfaceViewManager; | 144 class RendererSurfaceViewManager; |
145 class RenderFrameObserver; | 145 class RenderFrameObserver; |
146 class RenderViewImpl; | 146 class RenderViewImpl; |
147 class RenderWidget; | 147 class RenderWidget; |
148 class RenderWidgetFullscreenPepper; | 148 class RenderWidgetFullscreenPepper; |
149 class ResourceRequestBody; | 149 class ResourceRequestBodyImpl; |
150 class ScreenOrientationDispatcher; | 150 class ScreenOrientationDispatcher; |
151 class UserMediaClientImpl; | 151 class UserMediaClientImpl; |
152 class WakeLockDispatcher; | 152 class WakeLockDispatcher; |
153 struct CommonNavigationParams; | 153 struct CommonNavigationParams; |
154 struct CustomContextMenuContext; | 154 struct CustomContextMenuContext; |
155 struct FrameReplicationState; | 155 struct FrameReplicationState; |
156 struct NavigationParams; | 156 struct NavigationParams; |
157 struct RequestNavigationParams; | 157 struct RequestNavigationParams; |
158 struct ResourceResponseHead; | 158 struct ResourceResponseHead; |
159 struct StartNavigationParams; | 159 struct StartNavigationParams; |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 #endif | 1237 #endif |
1238 | 1238 |
1239 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1239 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1240 | 1240 |
1241 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1241 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1242 }; | 1242 }; |
1243 | 1243 |
1244 } // namespace content | 1244 } // namespace content |
1245 | 1245 |
1246 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1246 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |