| 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 1207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1218 // The presentation dispatcher implementation attached to this frame, lazily | 1218 // The presentation dispatcher implementation attached to this frame, lazily |
| 1219 // initialized. | 1219 // initialized. |
| 1220 PresentationDispatcher* presentation_dispatcher_; | 1220 PresentationDispatcher* presentation_dispatcher_; |
| 1221 | 1221 |
| 1222 std::unique_ptr<shell::InterfaceRegistry> interface_registry_; | 1222 std::unique_ptr<shell::InterfaceRegistry> interface_registry_; |
| 1223 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; | 1223 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; |
| 1224 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; | 1224 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; |
| 1225 shell::mojom::InterfaceProviderRequest | 1225 shell::mojom::InterfaceProviderRequest |
| 1226 pending_remote_interface_provider_request_; | 1226 pending_remote_interface_provider_request_; |
| 1227 | 1227 |
| 1228 // The shell proxy used to connect to Mojo applications. | 1228 // The shell proxy used to connect to services. |
| 1229 shell::mojom::ConnectorPtr connector_; | 1229 shell::mojom::ConnectorPtr connector_; |
| 1230 | 1230 |
| 1231 // The screen orientation dispatcher attached to the frame, lazily | 1231 // The screen orientation dispatcher attached to the frame, lazily |
| 1232 // initialized. | 1232 // initialized. |
| 1233 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 1233 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
| 1234 | 1234 |
| 1235 // The Manifest Manager handles the manifest requests from the browser | 1235 // The Manifest Manager handles the manifest requests from the browser |
| 1236 // process. | 1236 // process. |
| 1237 ManifestManager* manifest_manager_; | 1237 ManifestManager* manifest_manager_; |
| 1238 | 1238 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 bool name_changed_before_first_commit_ = false; | 1309 bool name_changed_before_first_commit_ = false; |
| 1310 | 1310 |
| 1311 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1311 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1312 | 1312 |
| 1313 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1313 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1314 }; | 1314 }; |
| 1315 | 1315 |
| 1316 } // namespace content | 1316 } // namespace content |
| 1317 | 1317 |
| 1318 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1318 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |