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

Side by Side Diff: mojo/services/public/cpp/view_manager/view_manager.h

Issue 298003008: Shell / ShellClient -> ServiceProvider (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
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 Shell; 16 class ServiceProvider;
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 // Owns a synchronizer that keeps a client model in sync with the service.
25 // Owned by the creator. 25 // Owned by the creator.
26 // 26 //
27 // TODO: displays 27 // TODO: displays
28 class ViewManager { 28 class ViewManager {
29 public: 29 public:
30 explicit ViewManager(Shell* shell); 30 explicit ViewManager(ServiceProvider* service_provider);
31 ~ViewManager(); 31 ~ViewManager();
32 32
33 // Connects to the View Manager service. This method must be called before 33 // Connects to the View Manager service. This method must be called before
34 // using any other View Manager lib class or function. 34 // using any other View Manager lib class or function.
35 // Blocks on establishing the connection and subsequently receiving a node 35 // Blocks on establishing the connection and subsequently receiving a node
36 // tree from the service. 36 // tree from the service.
37 // TODO(beng): blocking is currently achieved by running a nested runloop, 37 // TODO(beng): blocking is currently achieved by running a nested runloop,
38 // which will dispatch all messages on all pipes while blocking. 38 // which will dispatch all messages on all pipes while blocking.
39 // we should instead wait on the client pipe receiving a 39 // we should instead wait on the client pipe receiving a
40 // connection established message. 40 // connection established message.
41 // TODO(beng): this method could optionally not block if supplied a callback. 41 // TODO(beng): this method could optionally not block if supplied a callback.
42 void Init(); 42 void Init();
43 43
44 ViewTreeNode* tree() { return tree_; } 44 ViewTreeNode* tree() { return tree_; }
45 45
46 ViewTreeNode* GetNodeById(TransportNodeId id); 46 ViewTreeNode* GetNodeById(TransportNodeId id);
47 View* GetViewById(TransportViewId id); 47 View* GetViewById(TransportViewId id);
48 48
49 private: 49 private:
50 friend class ViewManagerPrivate; 50 friend class ViewManagerPrivate;
51 typedef std::map<TransportNodeId, ViewTreeNode*> IdToNodeMap; 51 typedef std::map<TransportNodeId, ViewTreeNode*> IdToNodeMap;
52 typedef std::map<TransportViewId, View*> IdToViewMap; 52 typedef std::map<TransportViewId, View*> IdToViewMap;
53 53
54 Shell* shell_; 54 ServiceProvider* service_provider_;
55 scoped_ptr<ViewManagerSynchronizer> synchronizer_; 55 scoped_ptr<ViewManagerSynchronizer> synchronizer_;
56 ViewTreeNode* tree_; 56 ViewTreeNode* tree_;
57 57
58 IdToNodeMap nodes_; 58 IdToNodeMap nodes_;
59 IdToViewMap views_; 59 IdToViewMap views_;
60 60
61 DISALLOW_COPY_AND_ASSIGN(ViewManager); 61 DISALLOW_COPY_AND_ASSIGN(ViewManager);
62 }; 62 };
63 63
64 } // namespace view_manager 64 } // namespace view_manager
65 } // namespace mojo 65 } // namespace mojo
66 66
67 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_ 67 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_MANAGER_H_
OLDNEW
« no previous file with comments | « mojo/services/public/cpp/view_manager/tests/view_manager_unittest.cc ('k') | mojo/services/view_manager/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698