| Index: ui/aura/window.h
|
| diff --git a/ui/aura/window.h b/ui/aura/window.h
|
| index df3e1aa5c775d6e3810ddd01c0b8a3d32fe7336b..7c49d779f5b5cef4773a6cc0d7535ae11621842b 100644
|
| --- a/ui/aura/window.h
|
| +++ b/ui/aura/window.h
|
| @@ -150,6 +150,10 @@ class AURA_EXPORT Window : public ui::LayerDelegate {
|
| // Move the specified child of this Window to the front of the z-order.
|
| void MoveChildToFront(Window* child);
|
|
|
| + // Moves |other| to be above |child|. Does nothing if |child| is already above
|
| + // |other|.
|
| + void MoveChildAbove(Window* child, Window* other);
|
| +
|
| // Returns true if this window can be activated.
|
| bool CanActivate() const;
|
|
|
|
|