| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 class PageState; | 126 class PageState; |
| 127 class PepperPluginInstanceImpl; | 127 class PepperPluginInstanceImpl; |
| 128 class PermissionDispatcher; | 128 class PermissionDispatcher; |
| 129 class PresentationDispatcher; | 129 class PresentationDispatcher; |
| 130 class PushMessagingDispatcher; | 130 class PushMessagingDispatcher; |
| 131 class RendererAccessibility; | 131 class RendererAccessibility; |
| 132 class RendererCdmManager; | 132 class RendererCdmManager; |
| 133 class RendererMediaPlayerManager; | 133 class RendererMediaPlayerManager; |
| 134 class RendererMediaSessionManager; | 134 class RendererMediaSessionManager; |
| 135 class RendererPpapiHost; | 135 class RendererPpapiHost; |
| 136 class RendererSurfaceViewManager; |
| 136 class RenderFrameObserver; | 137 class RenderFrameObserver; |
| 137 class RenderViewImpl; | 138 class RenderViewImpl; |
| 138 class RenderWidget; | 139 class RenderWidget; |
| 139 class RenderWidgetFullscreenPepper; | 140 class RenderWidgetFullscreenPepper; |
| 140 class ScreenOrientationDispatcher; | 141 class ScreenOrientationDispatcher; |
| 141 class UserMediaClientImpl; | 142 class UserMediaClientImpl; |
| 142 class WakeLockDispatcher; | 143 class WakeLockDispatcher; |
| 143 struct CommonNavigationParams; | 144 struct CommonNavigationParams; |
| 144 struct CustomContextMenuContext; | 145 struct CustomContextMenuContext; |
| 145 struct FrameReplicationState; | 146 struct FrameReplicationState; |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1108 | 1109 |
| 1109 #if defined(OS_ANDROID) | 1110 #if defined(OS_ANDROID) |
| 1110 // Manages all media players and sessions in this render frame for | 1111 // Manages all media players and sessions in this render frame for |
| 1111 // communicating with the real media player and sessions in the | 1112 // communicating with the real media player and sessions in the |
| 1112 // browser process. It's okay to use raw pointers since they're both | 1113 // browser process. It's okay to use raw pointers since they're both |
| 1113 // RenderFrameObservers. | 1114 // RenderFrameObservers. |
| 1114 RendererMediaPlayerManager* media_player_manager_; | 1115 RendererMediaPlayerManager* media_player_manager_; |
| 1115 RendererMediaSessionManager* media_session_manager_; | 1116 RendererMediaSessionManager* media_session_manager_; |
| 1116 #endif | 1117 #endif |
| 1117 | 1118 |
| 1119 RendererSurfaceViewManager* surface_manager_; |
| 1120 |
| 1118 #if defined(ENABLE_BROWSER_CDMS) | 1121 #if defined(ENABLE_BROWSER_CDMS) |
| 1119 // Manage all CDMs in this render frame for communicating with the real CDM in | 1122 // Manage all CDMs in this render frame for communicating with the real CDM in |
| 1120 // the browser process. It's okay to use a raw pointer since it's a | 1123 // the browser process. It's okay to use a raw pointer since it's a |
| 1121 // RenderFrameObserver. | 1124 // RenderFrameObserver. |
| 1122 RendererCdmManager* cdm_manager_; | 1125 RendererCdmManager* cdm_manager_; |
| 1123 #endif | 1126 #endif |
| 1124 | 1127 |
| 1125 // The CDM factory attached to this frame, lazily initialized. | 1128 // The CDM factory attached to this frame, lazily initialized. |
| 1126 scoped_ptr<media::CdmFactory> cdm_factory_; | 1129 scoped_ptr<media::CdmFactory> cdm_factory_; |
| 1127 | 1130 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1199 #endif | 1202 #endif |
| 1200 | 1203 |
| 1201 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1204 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1202 | 1205 |
| 1203 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1206 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1204 }; | 1207 }; |
| 1205 | 1208 |
| 1206 } // namespace content | 1209 } // namespace content |
| 1207 | 1210 |
| 1208 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1211 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |