OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ui/base/ui_base_types.h" | 10 #include "ui/base/ui_base_types.h" |
11 | 11 |
12 class Browser; | 12 class Browser; |
13 | 13 |
14 namespace gfx { | 14 namespace gfx { |
15 class Rect; | 15 class Rect; |
16 } | 16 } |
17 | 17 |
18 namespace chrome { | 18 namespace chrome { |
19 | 19 |
20 std::string GetWindowPlacementKey(const Browser* browser); | 20 std::string GetWindowPlacementKey(const Browser* browser); |
21 | 21 |
22 bool ShouldSaveWindowPlacement(const Browser* browser); | 22 bool ShouldSaveWindowPlacement(const Browser* browser); |
23 | 23 |
24 void SaveWindowPlacement(const Browser* browser, | 24 void SaveWindowPlacement(const Browser* browser, |
25 const gfx::Rect& bounds, | 25 const gfx::Rect& bounds, |
26 ui::WindowShowState show_state); | 26 ui::WindowShowState show_state); |
27 | 27 |
28 gfx::Rect GetSavedWindowBounds(const Browser* browser); | 28 // Return the |bounds| for the browser window to be used upon creation. |
29 | 29 // The |show_state| variable will receive the desired initial show state for |
30 ui::WindowShowState GetSavedWindowShowState(const Browser* browser); | 30 // the window. |
| 31 void GetSavedWindowBoundsAndShowState(const Browser* browser, |
| 32 gfx::Rect* bounds, |
| 33 ui::WindowShowState* show_state); |
31 | 34 |
32 } // namespace chrome | 35 } // namespace chrome |
33 | 36 |
34 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ | 37 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_STATE_H_ |
OLD | NEW |