| 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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 // initialized. | 1246 // initialized. |
| 1247 PresentationDispatcher* presentation_dispatcher_; | 1247 PresentationDispatcher* presentation_dispatcher_; |
| 1248 | 1248 |
| 1249 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; | 1249 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; |
| 1250 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; | 1250 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; |
| 1251 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 1251 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 1252 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; | 1252 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; |
| 1253 service_manager::mojom::InterfaceProviderRequest | 1253 service_manager::mojom::InterfaceProviderRequest |
| 1254 pending_remote_interface_provider_request_; | 1254 pending_remote_interface_provider_request_; |
| 1255 | 1255 |
| 1256 service_manager::ServiceInfo local_info_; |
| 1257 service_manager::ServiceInfo remote_info_; |
| 1258 |
| 1256 // The Connector proxy used to connect to services. | 1259 // The Connector proxy used to connect to services. |
| 1257 service_manager::mojom::ConnectorPtr connector_; | 1260 service_manager::mojom::ConnectorPtr connector_; |
| 1258 | 1261 |
| 1259 // The screen orientation dispatcher attached to the frame, lazily | 1262 // The screen orientation dispatcher attached to the frame, lazily |
| 1260 // initialized. | 1263 // initialized. |
| 1261 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 1264 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
| 1262 | 1265 |
| 1263 // The Manifest Manager handles the manifest requests from the browser | 1266 // The Manifest Manager handles the manifest requests from the browser |
| 1264 // process. | 1267 // process. |
| 1265 ManifestManager* manifest_manager_; | 1268 ManifestManager* manifest_manager_; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 bool browser_side_navigation_pending_ = false; | 1345 bool browser_side_navigation_pending_ = false; |
| 1343 | 1346 |
| 1344 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1347 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1345 | 1348 |
| 1346 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1349 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1347 }; | 1350 }; |
| 1348 | 1351 |
| 1349 } // namespace content | 1352 } // namespace content |
| 1350 | 1353 |
| 1351 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1354 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |