| Index: chrome/views/tree_view.h
|
| ===================================================================
|
| --- chrome/views/tree_view.h (revision 4885)
|
| +++ chrome/views/tree_view.h (working copy)
|
| @@ -147,6 +147,10 @@
|
| // 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 @@
|
| 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();
|
|
|