| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 class ExternalPopupMenu; | 138 class ExternalPopupMenu; |
| 139 class HistoryEntry; | 139 class HistoryEntry; |
| 140 class ManifestManager; | 140 class ManifestManager; |
| 141 class MediaInterfaceProvider; | 141 class MediaInterfaceProvider; |
| 142 class MediaStreamDispatcher; | 142 class MediaStreamDispatcher; |
| 143 class MediaStreamRendererFactory; | 143 class MediaStreamRendererFactory; |
| 144 class MediaPermissionDispatcher; | 144 class MediaPermissionDispatcher; |
| 145 class NavigationState; | 145 class NavigationState; |
| 146 class PepperPluginInstanceImpl; | 146 class PepperPluginInstanceImpl; |
| 147 class PresentationDispatcher; | 147 class PresentationDispatcher; |
| 148 class PushMessagingDispatcher; | 148 class PushMessagingClient; |
| 149 class RelatedAppsFetcher; | 149 class RelatedAppsFetcher; |
| 150 class RenderAccessibilityImpl; | 150 class RenderAccessibilityImpl; |
| 151 class RendererMediaPlayerManager; | 151 class RendererMediaPlayerManager; |
| 152 class RendererPpapiHost; | 152 class RendererPpapiHost; |
| 153 class RenderFrameObserver; | 153 class RenderFrameObserver; |
| 154 class RenderViewImpl; | 154 class RenderViewImpl; |
| 155 class RenderWidget; | 155 class RenderWidget; |
| 156 class RenderWidgetFullscreenPepper; | 156 class RenderWidgetFullscreenPepper; |
| 157 class ResourceRequestBodyImpl; | 157 class ResourceRequestBodyImpl; |
| 158 class ScreenOrientationDispatcher; | 158 class ScreenOrientationDispatcher; |
| (...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1274 std::unique_ptr<media::CdmFactory> cdm_factory_; | 1274 std::unique_ptr<media::CdmFactory> cdm_factory_; |
| 1275 std::unique_ptr<media::DecoderFactory> decoder_factory_; | 1275 std::unique_ptr<media::DecoderFactory> decoder_factory_; |
| 1276 | 1276 |
| 1277 // Media resource cache, lazily initialized. | 1277 // Media resource cache, lazily initialized. |
| 1278 linked_ptr<media::UrlIndex> url_index_; | 1278 linked_ptr<media::UrlIndex> url_index_; |
| 1279 | 1279 |
| 1280 // The devtools agent for this frame; only created for main frame and | 1280 // The devtools agent for this frame; only created for main frame and |
| 1281 // local roots. | 1281 // local roots. |
| 1282 DevToolsAgent* devtools_agent_; | 1282 DevToolsAgent* devtools_agent_; |
| 1283 | 1283 |
| 1284 // The push messaging dispatcher attached to this frame, lazily initialized. | |
| 1285 PushMessagingDispatcher* push_messaging_dispatcher_; | |
| 1286 | |
| 1287 // The presentation dispatcher implementation attached to this frame, lazily | 1284 // The presentation dispatcher implementation attached to this frame, lazily |
| 1288 // initialized. | 1285 // initialized. |
| 1289 PresentationDispatcher* presentation_dispatcher_; | 1286 PresentationDispatcher* presentation_dispatcher_; |
| 1290 | 1287 |
| 1288 // The PushMessagingClient attached to this frame, lazily initialized. |
| 1289 PushMessagingClient* push_messaging_client_; |
| 1290 |
| 1291 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; | 1291 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; |
| 1292 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; | 1292 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; |
| 1293 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 1293 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 1294 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; | 1294 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; |
| 1295 service_manager::mojom::InterfaceProviderRequest | 1295 service_manager::mojom::InterfaceProviderRequest |
| 1296 pending_remote_interface_provider_request_; | 1296 pending_remote_interface_provider_request_; |
| 1297 | 1297 |
| 1298 service_manager::ServiceInfo local_info_; | 1298 service_manager::ServiceInfo local_info_; |
| 1299 service_manager::ServiceInfo remote_info_; | 1299 service_manager::ServiceInfo remote_info_; |
| 1300 | 1300 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1396 int enabled_bindings_ = 0; | 1396 int enabled_bindings_ = 0; |
| 1397 | 1397 |
| 1398 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1398 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1399 | 1399 |
| 1400 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1400 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1401 }; | 1401 }; |
| 1402 | 1402 |
| 1403 } // namespace content | 1403 } // namespace content |
| 1404 | 1404 |
| 1405 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1405 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |