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

Unified Diff: mojo/services/public/cpp/view_manager/lib/view_manager_private.cc

Issue 258623005: First step at synchronizing client model changes with service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
Index: mojo/services/public/cpp/view_manager/lib/view_manager_private.cc
diff --git a/mojo/services/view_manager/view.cc b/mojo/services/public/cpp/view_manager/lib/view_manager_private.cc
similarity index 59%
copy from mojo/services/view_manager/view.cc
copy to mojo/services/public/cpp/view_manager/lib/view_manager_private.cc
index 0e9fc13abb3d54f014a17f7e9891bdd1efdc350a..e3272c318368dd8d276d58738bf689efb4c79ed8 100644
--- a/mojo/services/view_manager/view.cc
+++ b/mojo/services/public/cpp/view_manager/lib/view_manager_private.cc
@@ -2,18 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "mojo/services/view_manager/view.h"
-
-#include "mojo/services/view_manager/node.h"
+#include "mojo/services/public/cpp/view_manager/lib/view_manager_private.h"
namespace mojo {
namespace services {
namespace view_manager {
-View::View(const ViewId& id) : id_(id), node_(NULL) {}
-
-View::~View() {
-}
+ViewManagerPrivate::ViewManagerPrivate(ViewManager* manager)
+ : manager_(manager) {}
+ViewManagerPrivate::~ViewManagerPrivate() {}
} // namespace view_manager
} // namespace services

Powered by Google App Engine
This is Rietveld 408576698