Chromium Code Reviews| Index: apps/shell_window_geometry_cache.h |
| diff --git a/apps/shell_window_geometry_cache.h b/apps/shell_window_geometry_cache.h |
| index 334b9fbbfd434587e3e8845bee703ff97d797b68..fb450b3c0fb116829bec3c1c16a6ec636cfca318 100644 |
| --- a/apps/shell_window_geometry_cache.h |
| +++ b/apps/shell_window_geometry_cache.h |
| @@ -69,6 +69,7 @@ class ShellWindowGeometryCache |
| void SaveGeometry(const std::string& extension_id, |
| const std::string& window_id, |
| const gfx::Rect& bounds, |
| + const gfx::Rect& screen_bounds, |
| ui::WindowShowState state); |
| // Get any saved geometry and state associated with |extension_id| and |
| @@ -77,6 +78,7 @@ class ShellWindowGeometryCache |
| bool GetGeometry(const std::string& extension_id, |
| const std::string& window_id, |
| gfx::Rect* bounds, |
| + gfx::Rect* screen_bounds, |
| ui::WindowShowState* state); |
| // BrowserContextKeyedService |
| @@ -98,6 +100,7 @@ class ShellWindowGeometryCache |
| struct WindowData { |
| WindowData() : window_state(ui::SHOW_STATE_DEFAULT) {} |
|
scheib
2013/06/20 00:09:59
I ran try jobs, and a style issue has been tripped
zhchbin
2013/06/20 06:50:52
Done.
|
| gfx::Rect bounds; |
| + gfx::Rect screen_bounds; |
| ui::WindowShowState window_state; |
| base::Time last_change; |
| }; |