HomeSort by relevance Sort by last modified time
    Searched full:hwnd_ (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/ui/views/win/
fullscreen_handler.cc 18 : hwnd_(NULL),
49 ScopedFullscreenVisibility visibility(hwnd_);
56 saved_window_info_.maximized = !!::IsZoomed(hwnd_);
58 ::SendMessage(hwnd_, WM_SYSCOMMAND, SC_RESTORE, 0);
59 saved_window_info_.style = GetWindowLong(hwnd_, GWL_STYLE);
60 saved_window_info_.ex_style = GetWindowLong(hwnd_, GWL_EXSTYLE);
61 GetWindowRect(hwnd_, &saved_window_info_.window_rect);
68 SetWindowLong(hwnd_, GWL_STYLE,
70 SetWindowLong(hwnd_, GWL_EXSTYLE,
79 GetMonitorInfo(MonitorFromWindow(hwnd_, MONITOR_DEFAULTTONEAREST)
    [all...]
scoped_fullscreen_visibility.cc 15 : hwnd_(hwnd) {
18 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
22 full_screen_windows_->insert(std::make_pair(hwnd_, 1));
27 SetWindowPos(hwnd_, NULL, 0, 0, 0, 0,
34 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
38 ShowWindow(hwnd_, SW_SHOW);
fullscreen_handler.h 25 void set_hwnd(HWND hwnd) { hwnd_ = hwnd; }
47 HWND hwnd_; member in class:views::FullscreenHandler
scoped_fullscreen_visibility.h 32 HWND hwnd_; member in class:views::ScopedFullscreenVisibility
hwnd_message_handler.cc 299 hwnd_(owner_->hwnd()),
302 force_(!(GetWindowLong(hwnd_, GWL_STYLE) & WS_CAPTION)) {
303 if (was_visible_ && ::IsWindow(hwnd_))
308 if (!cancel_unlock_ && was_visible_ && ::IsWindow(hwnd_))
319 HWND hwnd_; member in class:views::HWNDMessageHandler::ScopedRedrawLock
    [all...]
  /external/chromium_org/remoting/host/
continue_window_win.cc 40 HWND hwnd_; member in class:remoting::__anon15025::ContinueWindowWin
46 : hwnd_(NULL) {
55 DCHECK(!hwnd_);
58 hwnd_ = CreateDialogParam(instance, MAKEINTRESOURCE(IDD_CONTINUE), NULL,
60 if (!hwnd_) {
65 ShowWindow(hwnd_, SW_SHOW);
100 hwnd_ = NULL;
107 hwnd_ = NULL;
112 hwnd_ = NULL;
122 if (hwnd_) {
    [all...]
disconnect_window_win.cc 73 HWND hwnd_; member in class:remoting::__anon15038::DisconnectWindowWin
109 : hwnd_(NULL),
179 hwnd_ = NULL;
211 HDC hdc = BeginPaint(hwnd_, &ps);
213 GetClientRect(hwnd_, &rect);
220 EndPaint(hwnd_, &ps);
229 DCHECK(!hwnd_);
232 hwnd_ = CreateDialogParam(module, MAKEINTRESOURCE(IDD_DISCONNECT), NULL,
234 if (!hwnd_)
238 if (!has_hotkey_ && RegisterHotKey(hwnd_, DISCONNECT_HOTKEY_ID
    [all...]
  /external/chromium_org/base/win/
scoped_hdc.h 22 : hwnd_(hwnd),
24 if (hwnd_) {
25 DCHECK(IsWindow(hwnd_));
37 ReleaseDC(hwnd_, hdc_);
43 HWND hwnd_; member in class:base::win::ScopedGetDC