| 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 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 // The push messaging dispatcher attached to this frame, lazily initialized. | 1154 // The push messaging dispatcher attached to this frame, lazily initialized. |
| 1155 PushMessagingDispatcher* push_messaging_dispatcher_; | 1155 PushMessagingDispatcher* push_messaging_dispatcher_; |
| 1156 | 1156 |
| 1157 // The presentation dispatcher implementation attached to this frame, lazily | 1157 // The presentation dispatcher implementation attached to this frame, lazily |
| 1158 // initialized. | 1158 // initialized. |
| 1159 PresentationDispatcher* presentation_dispatcher_; | 1159 PresentationDispatcher* presentation_dispatcher_; |
| 1160 | 1160 |
| 1161 ServiceRegistryImpl service_registry_; | 1161 ServiceRegistryImpl service_registry_; |
| 1162 | 1162 |
| 1163 // The shell proxy used to connect to Mojo applications. | 1163 // The shell proxy used to connect to Mojo applications. |
| 1164 mojo::ShellPtr mojo_shell_; | 1164 mojo::shell::mojom::ShellPtr mojo_shell_; |
| 1165 | 1165 |
| 1166 // The screen orientation dispatcher attached to the frame, lazily | 1166 // The screen orientation dispatcher attached to the frame, lazily |
| 1167 // initialized. | 1167 // initialized. |
| 1168 ScreenOrientationDispatcher* screen_orientation_dispatcher_; | 1168 ScreenOrientationDispatcher* screen_orientation_dispatcher_; |
| 1169 | 1169 |
| 1170 // The Manifest Manager handles the manifest requests from the browser | 1170 // The Manifest Manager handles the manifest requests from the browser |
| 1171 // process. | 1171 // process. |
| 1172 ManifestManager* manifest_manager_; | 1172 ManifestManager* manifest_manager_; |
| 1173 | 1173 |
| 1174 // The current accessibility mode. | 1174 // The current accessibility mode. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 #endif | 1207 #endif |
| 1208 | 1208 |
| 1209 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1209 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1210 | 1210 |
| 1211 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1211 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1212 }; | 1212 }; |
| 1213 | 1213 |
| 1214 } // namespace content | 1214 } // namespace content |
| 1215 | 1215 |
| 1216 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1216 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |