summaryrefslogtreecommitdiffstats
path: root/views/controls/tree/tree_view.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 01:38:50 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 01:38:50 +0000
commit3ce9f01e0678bcdf044efeb871fef4179573a3bc (patch)
tree3fbc53f60a12953d163d32802cfa56fe5a062dd4 /views/controls/tree/tree_view.h
parent071f94e501d86db8dfa2a3c0806a2388216bb239 (diff)
downloadchromium_src-3ce9f01e0678bcdf044efeb871fef4179573a3bc.zip
chromium_src-3ce9f01e0678bcdf044efeb871fef4179573a3bc.tar.gz
chromium_src-3ce9f01e0678bcdf044efeb871fef4179573a3bc.tar.bz2
Cleanup: Get rid of TreeNodeChildrenReordered.
Reason: This function was never implemented by TreeNodeModel and is unlike it will be. Also it proved to not be necessary at all. BUG=None TEST=trybots Review URL: http://codereview.chromium.org/3091016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55657 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/tree/tree_view.h')
-rw-r--r--views/controls/tree/tree_view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/controls/tree/tree_view.h b/views/controls/tree/tree_view.h
index 6d1fdac..c97149b 100644
--- a/views/controls/tree/tree_view.h
+++ b/views/controls/tree/tree_view.h
@@ -121,7 +121,8 @@ class TreeView : public NativeControl, TreeModelObserver {
// true.
void SetRootShown(bool root_visible);
- // TreeModelObserver methods. Don't call these directly, instead your model
+ // Begin TreeModelObserver implementation.
+ // Don't call these directly, instead your model
// should notify the observer TreeView adds to it.
virtual void TreeNodesAdded(TreeModel* model,
TreeModelNode* parent,
@@ -131,9 +132,8 @@ class TreeView : public NativeControl, TreeModelObserver {
TreeModelNode* parent,
int start,
int count);
- virtual void TreeNodeChildrenReordered(TreeModel* model,
- TreeModelNode* parent);
virtual void TreeNodeChanged(TreeModel* model, TreeModelNode* node);
+ // End TreeModelObserver implementation.
// Sets the controller, which may be null. TreeView does not take ownership
// of the controller.