1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_ROOT_CONNECTION_H_
6 #define COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_ROOT_CONNECTION_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "components/view_manager/public/interfaces/view_manager_root.mojom.h"
10 #include "components/view_manager/view_manager_root_delegate.h"
11 #include "components/view_manager/view_manager_root_impl.h"
12 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h"
14 namespace view_manager
{
16 class ConnectionManager
;
17 class ViewManagerServiceImpl
;
19 // ViewManagerRootConnection is a server-side object that encapsulates the
20 // connection between a client of the ViewManagerRoot and its implementation.
21 // ViewManagerRootConnection also establishes a ClientConnection via the same
22 // code path as embedded views. ConnectionManager manages the lifetime of
23 // ViewManagerRootConnections. If a connection to the client is lost or if the
24 // associated root is closed, the ViewManagerRootConnection will inform the
25 // ConnectionManager to destroy the root and its associated view tree.
26 class ViewManagerRootConnection
: public ViewManagerRootDelegate
{
28 ViewManagerRootConnection(
29 scoped_ptr
<ViewManagerRootImpl
> view_manager_root
,
30 ConnectionManager
* connection_manager
);
32 void set_view_manager_service(ViewManagerServiceImpl
* service
) {
36 ViewManagerRootImpl
* view_manager_root() { return root_
.get();}
37 const ViewManagerRootImpl
* view_manager_root() const { return root_
.get(); }
39 ConnectionManager
* connection_manager() { return connection_manager_
; }
40 const ConnectionManager
* connection_manager() const {
41 return connection_manager_
;
44 void CloseConnection();
47 ~ViewManagerRootConnection() override
;
49 // ViewManagerRootDelegate:
50 void OnDisplayInitialized() override
;
51 void OnDisplayClosed() override
;
52 ViewManagerServiceImpl
* GetViewManagerService() override
;
55 scoped_ptr
<ViewManagerRootImpl
> root_
;
56 ViewManagerServiceImpl
* service_
;
57 ConnectionManager
* connection_manager_
;
58 bool connection_closed_
;
60 DISALLOW_COPY_AND_ASSIGN(ViewManagerRootConnection
);
63 // Live implementation of ViewManagerRootConnection.
64 class ViewManagerRootConnectionImpl
: public ViewManagerRootConnection
{
66 ViewManagerRootConnectionImpl(
67 mojo::InterfaceRequest
<mojo::ViewManagerRoot
> request
,
68 scoped_ptr
<ViewManagerRootImpl
> root
,
69 mojo::ViewManagerClientPtr client
,
70 ConnectionManager
* connection_manager
);
73 ~ViewManagerRootConnectionImpl() override
;
75 // ViewManagerRootDelegate:
76 void OnDisplayInitialized() override
;
78 mojo::Binding
<mojo::ViewManagerRoot
> binding_
;
79 mojo::ViewManagerClientPtr client_
;
81 DISALLOW_COPY_AND_ASSIGN(ViewManagerRootConnectionImpl
);
84 } // namespace view_manager
86 #endif // COMPONENTS_VIEW_MANAGER_VIEW_MANAGER_ROOT_CONNECTION_H_