| Index: views/view.h
|
| diff --git a/views/view.h b/views/view.h
|
| index 1c412aba59ffa53968abcf24f88d01881a811346..3a37e750b5bf318a254602705d645660acd53b1f 100644
|
| --- a/views/view.h
|
| +++ b/views/view.h
|
| @@ -177,6 +177,10 @@ class View : public AcceleratorTarget {
|
| void AddChildView(View* view);
|
| void AddChildViewAt(View* view, int index);
|
|
|
| + // Moves |view| to the specified |index|. A negative value for |index| moves
|
| + // the view at the end.
|
| + void ReorderChildView(View* view, int index);
|
| +
|
| // Removes |view| from this view. The view's parent will change to NULL.
|
| void RemoveChildView(View* view);
|
|
|
|
|