OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ | 5 #ifndef MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ |
6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ | 6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "mojo/public/cpp/bindings/callback.h" | 12 #include "mojo/public/cpp/bindings/callback.h" |
13 #include "mojo/services/public/cpp/view_manager/view_tree_node.h" | 13 #include "mojo/services/public/cpp/view_manager/view_tree_node.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 class ServiceProvider; | 16 class Application; |
17 namespace view_manager { | 17 namespace view_manager { |
18 | 18 |
19 class View; | 19 class View; |
20 class ViewManagerSynchronizer; | 20 class ViewManagerSynchronizer; |
21 class ViewTreeNode; | 21 class ViewTreeNode; |
22 | 22 |
23 // Approximately encapsulates the View Manager service. | 23 // Approximately encapsulates the View Manager service. |
24 // Owns a synchronizer that keeps a client model in sync with the service. | 24 // Has a synchronizer that keeps a client model in sync with the service. |
25 // Owned by the creator. | 25 // Owned by the connection. |
26 // | 26 // |
27 // TODO: displays | 27 // TODO: displays |
28 class ViewManager { | 28 class ViewManager { |
29 public: | 29 public: |
30 explicit ViewManager(ServiceProvider* service_provider); | |
31 ~ViewManager(); | |
32 | |
33 // Connects to the View Manager service. This method must be called before | |
34 // using any other View Manager lib class or function. | |
35 // Blocks on establishing the connection and subsequently receiving a node | 30 // Blocks on establishing the connection and subsequently receiving a node |
36 // tree from the service. | 31 // tree from the service. |
37 // TODO(beng): blocking is currently achieved by running a nested runloop, | 32 // TODO(beng): blocking is currently achieved by running a nested runloop, |
38 // which will dispatch all messages on all pipes while blocking. | 33 // which will dispatch all messages on all pipes while blocking. |
39 // we should instead wait on the client pipe receiving a | 34 // we should instead wait on the client pipe receiving a |
40 // connection established message. | 35 // connection established message. |
41 // TODO(beng): this method could optionally not block if supplied a callback. | 36 // TODO(beng): this method could optionally not block if supplied a callback. |
42 void Init(); | 37 explicit ViewManager(Application* application); |
| 38 ~ViewManager(); |
43 | 39 |
44 ViewTreeNode* tree() { return tree_; } | 40 ViewTreeNode* tree() { return tree_; } |
45 | 41 |
46 ViewTreeNode* GetNodeById(TransportNodeId id); | 42 ViewTreeNode* GetNodeById(TransportNodeId id); |
47 View* GetViewById(TransportViewId id); | 43 View* GetViewById(TransportViewId id); |
48 | 44 |
| 45 void Embed(const String& url, ViewTreeNode* node); |
| 46 |
49 private: | 47 private: |
50 friend class ViewManagerPrivate; | 48 friend class ViewManagerPrivate; |
51 typedef std::map<TransportNodeId, ViewTreeNode*> IdToNodeMap; | 49 typedef std::map<TransportNodeId, ViewTreeNode*> IdToNodeMap; |
52 typedef std::map<TransportViewId, View*> IdToViewMap; | 50 typedef std::map<TransportViewId, View*> IdToViewMap; |
53 | 51 |
54 ServiceProvider* service_provider_; | 52 ViewManagerSynchronizer* synchronizer_; |
55 scoped_ptr<ViewManagerSynchronizer> synchronizer_; | |
56 ViewTreeNode* tree_; | 53 ViewTreeNode* tree_; |
57 | 54 |
58 IdToNodeMap nodes_; | 55 IdToNodeMap nodes_; |
59 IdToViewMap views_; | 56 IdToViewMap views_; |
60 | 57 |
61 DISALLOW_COPY_AND_ASSIGN(ViewManager); | 58 DISALLOW_COPY_AND_ASSIGN(ViewManager); |
62 }; | 59 }; |
63 | 60 |
64 } // namespace view_manager | 61 } // namespace view_manager |
65 } // namespace mojo | 62 } // namespace mojo |
66 | 63 |
67 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ | 64 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ |
OLD | NEW |