Home
last modified time | relevance | path

Searched refs:window_pos (Results 1 – 15 of 15) sorted by relevance

/external/chromium/chrome/browser/ui/views/tab_contents/
Dnative_tab_contents_view_win.cc210 void NativeTabContentsViewWin::OnWindowPosChanged(WINDOWPOS* window_pos) { in OnWindowPosChanged() argument
211 if (window_pos->flags & SWP_HIDEWINDOW) { in OnWindowPosChanged()
216 if (window_pos->flags & SWP_SHOWWINDOW) in OnWindowPosChanged()
223 if (!(window_pos->flags & SWP_NOSIZE)) { in OnWindowPosChanged()
225 gfx::Size(window_pos->cx, window_pos->cy)); in OnWindowPosChanged()
228 WidgetWin::OnWindowPosChanged(window_pos); in OnWindowPosChanged()
Dnative_tab_contents_view_win.h60 virtual void OnWindowPosChanged(WINDOWPOS* window_pos) OVERRIDE;
/external/chromium_org/ui/views/widget/
Dwidget_hwnd_utils.cc140 bool DidClientAreaSizeChange(const WINDOWPOS* window_pos) { in DidClientAreaSizeChange() argument
141 return !(window_pos->flags & SWP_NOSIZE) || in DidClientAreaSizeChange()
142 window_pos->flags & SWP_FRAMECHANGED; in DidClientAreaSizeChange()
Dwidget_hwnd_utils.h24 bool DidClientAreaSizeChange(const WINDOWPOS* window_pos);
/external/chromium_org/content/browser/web_contents/
Dweb_contents_view_win.cc329 WINDOWPOS* window_pos = reinterpret_cast<WINDOWPOS*>(lparam); in OnWindowPosChanged() local
330 if (window_pos->flags & SWP_HIDEWINDOW) { in OnWindowPosChanged()
337 if (window_pos->flags & SWP_SHOWWINDOW) in OnWindowPosChanged()
350 if (window_pos->flags & SWP_NOSIZE) in OnWindowPosChanged()
353 gfx::Size size(window_pos->cx, window_pos->cy); in OnWindowPosChanged()
/external/chromium/chrome/browser/ui/views/frame/
Dbrowser_frame_win.cc117 void BrowserFrameWin::OnWindowPosChanged(WINDOWPOS* window_pos) { in OnWindowPosChanged() argument
118 WindowWin::OnWindowPosChanged(window_pos); in OnWindowPosChanged()
130 if (window_pos->flags & SWP_SHOWWINDOW) { in OnWindowPosChanged()
Dbrowser_frame_win.h53 virtual void OnWindowPosChanged(WINDOWPOS* window_pos) OVERRIDE;
/external/chromium_org/ash/display/
Dscreen_position_controller_unittest.cc101 const gfx::Point window_pos(100, 100); in TEST_F() local
103 gfx::Rect(window_pos, gfx::Size(100, 100)), in TEST_F()
104 Shell::GetScreen()->GetDisplayNearestPoint(window_pos)); in TEST_F()
/external/chromium_org/ui/views/win/
Dhwnd_message_handler.cc2305 void HWNDMessageHandler::OnWindowPosChanging(WINDOWPOS* window_pos) { in OnWindowPosChanging() argument
2309 if (!(window_pos->flags & ((IsVisible() ? SWP_HIDEWINDOW : SWP_SHOWWINDOW) | in OnWindowPosChanging()
2311 (window_pos->flags & (SWP_NOZORDER | SWP_NOACTIVATE))) { in OnWindowPosChanging()
2313 window_pos->flags |= SWP_NOSIZE | SWP_NOMOVE | SWP_NOREDRAW; in OnWindowPosChanging()
2314 window_pos->flags &= ~(SWP_SHOWWINDOW | SWP_HIDEWINDOW); in OnWindowPosChanging()
2347 window_pos->x = new_window_rect.x(); in OnWindowPosChanging()
2348 window_pos->y = new_window_rect.y(); in OnWindowPosChanging()
2349 window_pos->cx = new_window_rect.width(); in OnWindowPosChanging()
2350 window_pos->cy = new_window_rect.height(); in OnWindowPosChanging()
2353 window_pos->flags &= ~(SWP_NOSIZE | SWP_NOMOVE | SWP_NOREDRAW); in OnWindowPosChanging()
[all …]
Dhwnd_message_handler.h432 void OnWindowPosChanging(WINDOWPOS* window_pos);
433 void OnWindowPosChanged(WINDOWPOS* window_pos);
/external/chromium_org/tools/site_compare/
Dsite_compare.py38 window_pos=(0, 0), timeout=20, save_path=None, **kwargs): argument
73 scraper.Scrape(urls, full_path, window_size, window_pos, timeout, kwargs)
/external/chromium_org/chrome/browser/ui/views/frame/
Dbrowser_desktop_root_window_host_win.cc215 WINDOWPOS* window_pos = reinterpret_cast<WINDOWPOS*>(l_param); in PostHandleMSG() local
216 if (window_pos->flags & SWP_SHOWWINDOW && GetWidget()->non_client_view()) { in PostHandleMSG()
Dbrowser_frame_win.cc276 WINDOWPOS* window_pos = reinterpret_cast<WINDOWPOS*>(l_param); in PostHandleMSG() local
277 if (window_pos->flags & SWP_SHOWWINDOW && GetWidget()->non_client_view()) { in PostHandleMSG()
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit_view_win.h304 void OnWindowPosChanging(WINDOWPOS* window_pos);
Dautocomplete_edit_view_win.cc1824 void AutocompleteEditViewWin::OnWindowPosChanging(WINDOWPOS* window_pos) { in OnWindowPosChanging() argument
1826 window_pos->flags &= ~SWP_SHOWWINDOW; in OnWindowPosChanging()