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 FileChooserFileInfo; | 155 struct FileChooserFileInfo; |
156 struct FileChooserParams; | 156 struct FileChooserParams; |
157 struct FrameReplicationState; | 157 struct FrameReplicationState; |
158 struct NavigationParams; | 158 struct NavigationParams; |
159 struct RequestNavigationParams; | 159 struct RequestNavigationParams; |
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 #endif | 1275 #endif |
1276 | 1276 |
1277 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1277 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1278 | 1278 |
1279 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1279 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1280 }; | 1280 }; |
1281 | 1281 |
1282 } // namespace content | 1282 } // namespace content |
1283 | 1283 |
1284 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1284 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |