Home | History | Annotate | Download | only in wm

Lines Matching full:rect

15 #include "ui/gfx/rect.h"
19 void SetRestoreBoundsInScreen(aura::Window* window, const gfx::Rect& bounds) {
20 window->SetProperty(aura::client::kRestoreBoundsKey, new gfx::Rect(bounds));
23 void SetRestoreBoundsInParent(aura::Window* window, const gfx::Rect& bounds) {
28 const gfx::Rect* GetRestoreBoundsInScreen(aura::Window* window) {
32 gfx::Rect GetRestoreBoundsInParent(aura::Window* window) {
33 const gfx::Rect* rect = GetRestoreBoundsInScreen(window);
34 if (!rect)
35 return gfx::Rect();
36 return ScreenAsh::ConvertRectFromScreen(window->parent(), *rect);