Home | History | Annotate | Download | only in aura

Lines Matching refs:child

18 // An interface implemented by an object that places child windows.
27 // Invoked when the window |child| has been added.
28 virtual void OnWindowAddedToLayout(Window* child) = 0;
31 virtual void OnWillRemoveWindowFromLayout(Window* child) = 0;
34 virtual void OnWindowRemovedFromLayout(Window* child) = 0;
36 // Invoked when the |SetVisible()| is invoked on the window |child|.
40 virtual void OnChildWindowVisibilityChanged(Window* child, bool visible) = 0;
42 // Invoked when |Window::SetBounds| is called on |child|.
44 // |child|'s bounds. LayoutManager may modify |requested_bounds|
46 virtual void SetChildBounds(Window* child,
50 // Sets the child's bounds forcibly. LayoutManager is responsible
53 void SetChildBoundsDirect(aura::Window* child, const gfx::Rect& bounds);