| Index: mojo/services/public/cpp/view_manager/view_tree_node.h
|
| diff --git a/mojo/services/public/cpp/view_manager/view_tree_node.h b/mojo/services/public/cpp/view_manager/view_tree_node.h
|
| index 913a354fb1093d416912e8955779b6a8d5671b35..d3e6ddf60d75827957e171803baa94442d4a5b65 100644
|
| --- a/mojo/services/public/cpp/view_manager/view_tree_node.h
|
| +++ b/mojo/services/public/cpp/view_manager/view_tree_node.h
|
| @@ -34,7 +34,7 @@ class ViewTreeNode {
|
| void Destroy();
|
|
|
| // Configuration.
|
| - TransportNodeId id() const { return id_; }
|
| + Id id() const { return id_; }
|
|
|
| // Geometric disposition.
|
| const gfx::Rect& bounds() { return bounds_; }
|
| @@ -54,7 +54,7 @@ class ViewTreeNode {
|
|
|
| bool Contains(ViewTreeNode* child) const;
|
|
|
| - ViewTreeNode* GetChildById(TransportNodeId id);
|
| + ViewTreeNode* GetChildById(Id id);
|
|
|
| // View.
|
| void SetActiveView(View* view);
|
| @@ -80,7 +80,7 @@ class ViewTreeNode {
|
| void LocalSetBounds(const gfx::Rect& old_bounds, const gfx::Rect& new_bounds);
|
|
|
| ViewManager* manager_;
|
| - TransportNodeId id_;
|
| + Id id_;
|
| ViewTreeNode* parent_;
|
| Children children_;
|
|
|
|
|