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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 // initialized. | 1235 // initialized. |
1236 PresentationDispatcher* presentation_dispatcher_; | 1236 PresentationDispatcher* presentation_dispatcher_; |
1237 | 1237 |
1238 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; | 1238 std::unique_ptr<service_manager::InterfaceRegistry> interface_registry_; |
1239 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; | 1239 std::unique_ptr<service_manager::InterfaceProvider> remote_interfaces_; |
1240 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 1240 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
1241 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; | 1241 std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; |
1242 service_manager::mojom::InterfaceProviderRequest | 1242 service_manager::mojom::InterfaceProviderRequest |
1243 pending_remote_interface_provider_request_; | 1243 pending_remote_interface_provider_request_; |
1244 | 1244 |
1245 // The shell proxy used to connect to services. | 1245 // The Connector proxy used to connect to services. |
1246 service_manager::mojom::ConnectorPtr connector_; | 1246 service_manager::mojom::ConnectorPtr connector_; |
1247 | 1247 |
1248 // The screen orientation dispatcher attached to the frame, lazily | 1248 // The screen orientation dispatcher attached to the frame, lazily |
1249 // initialized. | 1249 // initialized. |
1250 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 1250 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
1251 | 1251 |
1252 // The Manifest Manager handles the manifest requests from the browser | 1252 // The Manifest Manager handles the manifest requests from the browser |
1253 // process. | 1253 // process. |
1254 ManifestManager* manifest_manager_; | 1254 ManifestManager* manifest_manager_; |
1255 | 1255 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1326 bool name_changed_before_first_commit_ = false; | 1326 bool name_changed_before_first_commit_ = false; |
1327 | 1327 |
1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1329 | 1329 |
1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1331 }; | 1331 }; |
1332 | 1332 |
1333 } // namespace content | 1333 } // namespace content |
1334 | 1334 |
1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |