Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1736663003: Eliminate Quit() from Shell, and roll Shell & Connector together. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@14cf
Patch Set: . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 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
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_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698