| Index: mojo/services/view_manager/view_manager_init_service_context.h
|
| diff --git a/mojo/services/view_manager/view_manager_init_service_context.h b/mojo/services/view_manager/view_manager_init_service_context.h
|
| index 02511203c21370f40e9307b19effce3291f33bb2..b87b9a327a6ace55166941be92f842937b3162d1 100644
|
| --- a/mojo/services/view_manager/view_manager_init_service_context.h
|
| +++ b/mojo/services/view_manager/view_manager_init_service_context.h
|
| @@ -17,7 +17,7 @@
|
| namespace mojo {
|
| namespace service {
|
|
|
| -class RootNodeManager;
|
| +class ConnectionManager;
|
| class ViewManagerInitServiceImpl;
|
|
|
| // State shared between all ViewManagerInitService impls.
|
| @@ -36,7 +36,7 @@ class MOJO_VIEW_MANAGER_EXPORT ViewManagerInitServiceContext
|
| ServiceProviderPtr service_provider,
|
| const Callback<void(bool)>& callback);
|
|
|
| - RootNodeManager* root_node_manager() { return root_node_manager_.get(); }
|
| + ConnectionManager* connection_manager() { return connection_manager_.get(); }
|
|
|
| bool is_tree_host_ready() const { return is_tree_host_ready_; }
|
|
|
| @@ -59,7 +59,7 @@ class MOJO_VIEW_MANAGER_EXPORT ViewManagerInitServiceContext
|
|
|
| void MaybeEmbed();
|
|
|
| - scoped_ptr<RootNodeManager> root_node_manager_;
|
| + scoped_ptr<ConnectionManager> connection_manager_;
|
| Connections connections_;
|
|
|
| // Stores information about inbound calls to Embed() pending execution on
|
|
|