 Chromium Code Reviews
 Chromium Code Reviews Issue 8082017:
  Change Window visibility to a simple boolean for now.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/
    
  
    Issue 8082017:
  Change Window visibility to a simple boolean for now.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src/| Index: ui/aura_shell/desktop_window.cc | 
| =================================================================== | 
| --- ui/aura_shell/desktop_window.cc (revision 103502) | 
| +++ ui/aura_shell/desktop_window.cc (working copy) | 
| @@ -51,7 +51,7 @@ | 
| aura::Window::Windows::const_iterator i; | 
| for (i = containers.begin(); i != containers.end(); ++i) { | 
| (*i)->Init(); | 
| - (*i)->SetVisibility(aura::Window::VISIBILITY_SHOWN); | 
| + (*i)->Show(); | 
| aura::Desktop::GetInstance()->window()->AddChild(*i); | 
| } |