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

Unified Diff: mojo/services/view_manager/view.cc

Issue 250633003: Adds more to viewmanager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: override Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/view_manager/view.h ('k') | mojo/services/view_manager/view_manager_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/view_manager/view.cc
diff --git a/mojo/services/public/cpp/view_manager/lib/view_tree_node_private.cc b/mojo/services/view_manager/view.cc
similarity index 59%
copy from mojo/services/public/cpp/view_manager/lib/view_tree_node_private.cc
copy to mojo/services/view_manager/view.cc
index a1c3a40ac9f84a3cf0a4ae1dd2e7a8b2989c673c..0e9fc13abb3d54f014a17f7e9891bdd1efdc350a 100644
--- a/mojo/services/public/cpp/view_manager/lib/view_tree_node_private.cc
+++ b/mojo/services/view_manager/view.cc
@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "mojo/services/public/cpp/view_manager/lib/view_tree_node_private.h"
+#include "mojo/services/view_manager/view.h"
+
+#include "mojo/services/view_manager/node.h"
namespace mojo {
namespace services {
namespace view_manager {
-ViewTreeNodePrivate::ViewTreeNodePrivate(ViewTreeNode* node)
- : node_(node) {
-}
+View::View(const ViewId& id) : id_(id), node_(NULL) {}
-ViewTreeNodePrivate::~ViewTreeNodePrivate() {
+View::~View() {
}
} // namespace view_manager
« no previous file with comments | « mojo/services/view_manager/view.h ('k') | mojo/services/view_manager/view_manager_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698