Home
last modified time | relevance | path

Searched refs:saved_window_info_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/ui/views/win/
Dfullscreen_handler.cc42 return gfx::Rect(saved_window_info_.window_rect); in GetRestoreBounds()
56 saved_window_info_.maximized = !!::IsZoomed(hwnd_); in SetFullscreenImpl()
57 if (saved_window_info_.maximized) in SetFullscreenImpl()
59 saved_window_info_.style = GetWindowLong(hwnd_, GWL_STYLE); in SetFullscreenImpl()
60 saved_window_info_.ex_style = GetWindowLong(hwnd_, GWL_EXSTYLE); in SetFullscreenImpl()
61 GetWindowRect(hwnd_, &saved_window_info_.window_rect); in SetFullscreenImpl()
69 saved_window_info_.style & ~(WS_CAPTION | WS_THICKFRAME)); in SetFullscreenImpl()
71 saved_window_info_.ex_style & ~(WS_EX_DLGMODALFRAME | in SetFullscreenImpl()
90 SetWindowLong(hwnd_, GWL_STYLE, saved_window_info_.style); in SetFullscreenImpl()
91 SetWindowLong(hwnd_, GWL_EXSTYLE, saved_window_info_.ex_style); in SetFullscreenImpl()
[all …]
Dfullscreen_handler.h53 SavedWindowInfo saved_window_info_; variable