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

Side by Side Diff: mojo/services/view_manager/view.h

Issue 267293004: Wires up view manager to an actual display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 7 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
« no previous file with comments | « mojo/services/view_manager/root_view_manager.cc ('k') | mojo/services/view_manager/view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_VIEW_MANAGER_VIEW_H_ 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_VIEW_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_VIEW_H_ 6 #define MOJO_SERVICES_VIEW_MANAGER_VIEW_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "mojo/services/view_manager/ids.h" 11 #include "mojo/services/view_manager/ids.h"
12 #include "mojo/services/view_manager/view_manager_export.h" 12 #include "mojo/services/view_manager/view_manager_export.h"
13 #include "third_party/skia/include/core/SkBitmap.h"
13 14
14 namespace mojo { 15 namespace mojo {
15 namespace services { 16 namespace services {
16 namespace view_manager { 17 namespace view_manager {
17 18
18 class Node; 19 class Node;
19 20
20 // Represents a view. A view may be associated with a single Node. 21 // Represents a view. A view may be associated with a single Node.
21 class MOJO_VIEW_MANAGER_EXPORT View { 22 class MOJO_VIEW_MANAGER_EXPORT View {
22 public: 23 public:
23 explicit View(const ViewId& id); 24 explicit View(const ViewId& id);
24 ~View(); 25 ~View();
25 26
26 const ViewId& id() const { return id_; } 27 const ViewId& id() const { return id_; }
27 28
28 Node* node() { return node_; } 29 Node* node() { return node_; }
29 30
31 void SetBitmap(const SkBitmap& contents);
32 const SkBitmap& bitmap() const { return bitmap_; }
33
30 private: 34 private:
31 // Node is responsible for maintaining |node_|. 35 // Node is responsible for maintaining |node_|.
32 friend class Node; 36 friend class Node;
33 37
34 void set_node(Node* node) { node_ = node; } 38 void set_node(Node* node) { node_ = node; }
35 39
36 const ViewId id_; 40 const ViewId id_;
37 Node* node_; 41 Node* node_;
42 SkBitmap bitmap_;
38 43
39 DISALLOW_COPY_AND_ASSIGN(View); 44 DISALLOW_COPY_AND_ASSIGN(View);
40 }; 45 };
41 46
42 } // namespace view_manager 47 } // namespace view_manager
43 } // namespace services 48 } // namespace services
44 } // namespace mojo 49 } // namespace mojo
45 50
46 #endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_H_ 51 #endif // MOJO_SERVICES_VIEW_MANAGER_VIEW_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/root_view_manager.cc ('k') | mojo/services/view_manager/view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698