summaryrefslogtreecommitdiffstats
path: root/chrome/views/tree_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/views/tree_view.h')
-rw-r--r--chrome/views/tree_view.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/views/tree_view.h b/chrome/views/tree_view.h
index fb3f50e..d0d083e 100644
--- a/chrome/views/tree_view.h
+++ b/chrome/views/tree_view.h
@@ -147,6 +147,10 @@ class TreeView : public NativeControl, TreeModelObserver {
// Convenience to expand ALL nodes in the tree.
void ExpandAll();
+ // Invoked from ExpandAll(). Expands the supplied node and recursively
+ // invokes itself with all children.
+ void ExpandAll(TreeModelNode* node);
+
// Returns true if the specified node is expanded.
bool IsExpanded(TreeModelNode* node);
@@ -253,10 +257,6 @@ class TreeView : public NativeControl, TreeModelObserver {
bool loaded_children;
};
- // Invoked from ExpandAll(). Expands the supplied node and recursively
- // invokes itself with all children.
- void ExpandAll(TreeModelNode* node);
-
// Deletes the root items from the treeview. This is used when the model
// changes.
void DeleteRootItems();