Searched defs:window_pos (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/ui/views/widget/
H A Dwidget_hwnd_utils.cc140 bool DidClientAreaSizeChange(const WINDOWPOS* window_pos) { argument
141 return !(window_pos->flags & SWP_NOSIZE) ||
142 window_pos->flags & SWP_FRAMECHANGED;
/external/chromium_org/mojo/services/native_viewport/
H A Dnative_viewport_win.cc143 void OnWindowPosChanged(WINDOWPOS* window_pos) { argument
144 if (!(window_pos->flags & SWP_NOSIZE) ||
145 !(window_pos->flags & SWP_NOMOVE)) {
149 gfx::Rect(window_pos->x, window_pos->y,
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_desktop_window_tree_host_win.cc217 WINDOWPOS* window_pos = reinterpret_cast<WINDOWPOS*>(l_param); local
218 if (window_pos->flags & SWP_SHOWWINDOW && GetWidget()->non_client_view()) {
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc2172 void HWNDMessageHandler::OnWindowPosChanging(WINDOWPOS* window_pos) { argument
2176 if (!(window_pos->flags & ((IsVisible() ? SWP_HIDEWINDOW : SWP_SHOWWINDOW) |
2178 (window_pos->flags & (SWP_NOZORDER | SWP_NOACTIVATE))) {
2180 window_pos->flags |= SWP_NOSIZE | SWP_NOMOVE | SWP_NOREDRAW;
2181 window_pos->flags &= ~(SWP_SHOWWINDOW | SWP_HIDEWINDOW);
2202 // |window_pos| and recalculate it based on the new work rect.
2214 window_pos->x = new_window_rect.x();
2215 window_pos->y = new_window_rect.y();
2216 window_pos->cx = new_window_rect.width();
2217 window_pos
2255 OnWindowPosChanged(WINDOWPOS* window_pos) argument
[all...]

Completed in 164 milliseconds