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

  /external/chromium_org/ui/views/win/
scoped_fullscreen_visibility.cc 12 std::map<HWND, int>* ScopedFullscreenVisibility::full_screen_windows_ = NULL; member in class:views::ScopedFullscreenVisibility
16 if (!full_screen_windows_)
17 full_screen_windows_ = new FullscreenHWNDs;
18 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
19 if (it != full_screen_windows_->end()) {
22 full_screen_windows_->insert(std::make_pair(hwnd_, 1));
34 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_);
35 DCHECK(it != full_screen_windows_->end());
37 full_screen_windows_->erase(it);
40 if (full_screen_windows_->empty())
    [all...]
scoped_fullscreen_visibility.h 34 static FullscreenHWNDs* full_screen_windows_; member in class:views::ScopedFullscreenVisibility

Completed in 497 milliseconds