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