Chromium Code Reviews| Index: chrome/browser/ui/gtk/browser_window_gtk.cc |
| diff --git a/chrome/browser/ui/gtk/browser_window_gtk.cc b/chrome/browser/ui/gtk/browser_window_gtk.cc |
| index e14bbb825fd3c95ba8d34abdd86dc8ebf351b39d..8585c5f9bfc66297f8cd0ab3fbb4c1c833eb30ee 100644 |
| --- a/chrome/browser/ui/gtk/browser_window_gtk.cc |
| +++ b/chrome/browser/ui/gtk/browser_window_gtk.cc |
| @@ -1666,9 +1666,10 @@ void BrowserWindowGtk::SetGeometryHints() { |
| // confused and maximizes the window, but doesn't set the |
| // GDK_WINDOW_STATE_MAXIMIZED bit. So instead, we keep track of whether to |
| // maximize and call it after gtk_window_present. |
| - show_state_after_show_ = chrome::GetSavedWindowShowState(browser_.get()); |
| - |
| - gfx::Rect bounds = chrome::GetSavedWindowBounds(browser_.get()); |
| + gfx::Rect bounds; |
| + chrome::GetSavedWindowBoundsAndShowState(browser_.get(), |
| + &bounds, |
| + &show_state_after_show_); |
|
sky
2012/10/08 21:01:25
initialize.
Mr4D (OOO till 08-26)
2012/10/08 23:04:27
It does already get initialized. Unless you want t
|
| // We don't blindly call SetBounds here: that sets a forced position |
| // on the window and we intentionally *don't* do that for normal |
| // windows. Most programs do not restore their window position on |