diff options
Diffstat (limited to 'ui/aura/window.h')
-rw-r--r-- | ui/aura/window.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/aura/window.h b/ui/aura/window.h index baf34f1..a73f784 100644 --- a/ui/aura/window.h +++ b/ui/aura/window.h @@ -175,6 +175,9 @@ class AURA_EXPORT Window : public ui::LayerDelegate, // see WindowTest.StackingMadrigal for details. void StackChildAbove(Window* child, Window* target); + // Stacks the specified child of this window at the bottom of the z-order. + void StackChildAtBottom(Window* child); + // Stacks |child| below |target|. Does nothing if |child| is already below // |target|. void StackChildBelow(Window* child, Window* target); |