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

Unified Diff: mojo/services/public/cpp/view_manager/view.h

Issue 338093008: Client side name cleanup (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/public/cpp/view_manager/util.h ('k') | mojo/services/public/cpp/view_manager/view_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/public/cpp/view_manager/view.h
diff --git a/mojo/services/public/cpp/view_manager/view.h b/mojo/services/public/cpp/view_manager/view.h
index 28f072c6ca4512af5c689ac36f7e63b94e726720..b10417b21ba08afa188da5b9034df03a8a46d196 100644
--- a/mojo/services/public/cpp/view_manager/view.h
+++ b/mojo/services/public/cpp/view_manager/view.h
@@ -7,7 +7,7 @@
#include "base/basictypes.h"
#include "base/observer_list.h"
-#include "mojo/services/public/cpp/view_manager/view_manager_types.h"
+#include "mojo/services/public/cpp/view_manager/types.h"
#include "third_party/skia/include/core/SkColor.h"
class SkBitmap;
@@ -15,9 +15,9 @@ class SkBitmap;
namespace mojo {
namespace view_manager {
+class Node;
class ViewManager;
class ViewObserver;
-class ViewTreeNode;
// Views are owned by the ViewManager.
class View {
@@ -27,7 +27,7 @@ class View {
void Destroy();
Id id() const { return id_; }
- ViewTreeNode* node() { return node_; }
+ Node* node() { return node_; }
void AddObserver(ViewObserver* observer);
void RemoveObserver(ViewObserver* observer);
@@ -46,7 +46,7 @@ class View {
void LocalDestroy();
Id id_;
- ViewTreeNode* node_;
+ Node* node_;
ViewManager* manager_;
ObserverList<ViewObserver> observers_;
« no previous file with comments | « mojo/services/public/cpp/view_manager/util.h ('k') | mojo/services/public/cpp/view_manager/view_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698