| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 class Point; | 89 class Point; |
| 90 class Range; | 90 class Range; |
| 91 class Rect; | 91 class Rect; |
| 92 } | 92 } |
| 93 | 93 |
| 94 namespace media { | 94 namespace media { |
| 95 class CdmFactory; | 95 class CdmFactory; |
| 96 class MediaPermission; | 96 class MediaPermission; |
| 97 class MediaServiceProvider; | 97 class MediaServiceProvider; |
| 98 class RendererWebMediaPlayerDelegate; | 98 class RendererWebMediaPlayerDelegate; |
| 99 class SurfaceManager; |
| 99 class UrlIndex; | 100 class UrlIndex; |
| 100 class WebEncryptedMediaClientImpl; | 101 class WebEncryptedMediaClientImpl; |
| 101 } | 102 } |
| 102 | 103 |
| 103 namespace mojo { | 104 namespace mojo { |
| 104 class ServiceProvider; | 105 class ServiceProvider; |
| 105 } | 106 } |
| 106 | 107 |
| 107 namespace url { | 108 namespace url { |
| 108 class Origin; | 109 class Origin; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 126 class PageState; | 127 class PageState; |
| 127 class PepperPluginInstanceImpl; | 128 class PepperPluginInstanceImpl; |
| 128 class PermissionDispatcher; | 129 class PermissionDispatcher; |
| 129 class PresentationDispatcher; | 130 class PresentationDispatcher; |
| 130 class PushMessagingDispatcher; | 131 class PushMessagingDispatcher; |
| 131 class RendererAccessibility; | 132 class RendererAccessibility; |
| 132 class RendererCdmManager; | 133 class RendererCdmManager; |
| 133 class RendererMediaPlayerManager; | 134 class RendererMediaPlayerManager; |
| 134 class RendererMediaSessionManager; | 135 class RendererMediaSessionManager; |
| 135 class RendererPpapiHost; | 136 class RendererPpapiHost; |
| 137 class RendererSurfaceViewManager; |
| 136 class RenderFrameObserver; | 138 class RenderFrameObserver; |
| 137 class RenderViewImpl; | 139 class RenderViewImpl; |
| 138 class RenderWidget; | 140 class RenderWidget; |
| 139 class RenderWidgetFullscreenPepper; | 141 class RenderWidgetFullscreenPepper; |
| 140 class ScreenOrientationDispatcher; | 142 class ScreenOrientationDispatcher; |
| 141 class UserMediaClientImpl; | 143 class UserMediaClientImpl; |
| 142 class WakeLockDispatcher; | 144 class WakeLockDispatcher; |
| 143 struct CommonNavigationParams; | 145 struct CommonNavigationParams; |
| 144 struct CustomContextMenuContext; | 146 struct CustomContextMenuContext; |
| 145 struct FrameReplicationState; | 147 struct FrameReplicationState; |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 | 1108 |
| 1107 #if defined(OS_ANDROID) | 1109 #if defined(OS_ANDROID) |
| 1108 // Manages all media players and sessions in this render frame for | 1110 // Manages all media players and sessions in this render frame for |
| 1109 // communicating with the real media player and sessions in the | 1111 // communicating with the real media player and sessions in the |
| 1110 // browser process. It's okay to use raw pointers since they're both | 1112 // browser process. It's okay to use raw pointers since they're both |
| 1111 // RenderFrameObservers. | 1113 // RenderFrameObservers. |
| 1112 RendererMediaPlayerManager* media_player_manager_; | 1114 RendererMediaPlayerManager* media_player_manager_; |
| 1113 RendererMediaSessionManager* media_session_manager_; | 1115 RendererMediaSessionManager* media_session_manager_; |
| 1114 #endif | 1116 #endif |
| 1115 | 1117 |
| 1118 media::SurfaceManager* media_surface_manager_; |
| 1119 |
| 1116 #if defined(ENABLE_BROWSER_CDMS) | 1120 #if defined(ENABLE_BROWSER_CDMS) |
| 1117 // Manage all CDMs in this render frame for communicating with the real CDM in | 1121 // Manage all CDMs in this render frame for communicating with the real CDM in |
| 1118 // the browser process. It's okay to use a raw pointer since it's a | 1122 // the browser process. It's okay to use a raw pointer since it's a |
| 1119 // RenderFrameObserver. | 1123 // RenderFrameObserver. |
| 1120 RendererCdmManager* cdm_manager_; | 1124 RendererCdmManager* cdm_manager_; |
| 1121 #endif | 1125 #endif |
| 1122 | 1126 |
| 1123 // The CDM factory attached to this frame, lazily initialized. | 1127 // The CDM factory attached to this frame, lazily initialized. |
| 1124 scoped_ptr<media::CdmFactory> cdm_factory_; | 1128 scoped_ptr<media::CdmFactory> cdm_factory_; |
| 1125 | 1129 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1197 #endif | 1201 #endif |
| 1198 | 1202 |
| 1199 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1203 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1200 | 1204 |
| 1201 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1205 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1202 }; | 1206 }; |
| 1203 | 1207 |
| 1204 } // namespace content | 1208 } // namespace content |
| 1205 | 1209 |
| 1206 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1210 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |