| 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_WINDOW_SIZER_H_ | 5 #ifndef CHROME_BROWSER_UI_WINDOW_SIZER_WINDOW_SIZER_H_ |
| 6 #define CHROME_BROWSER_UI_WINDOW_SIZER_H_ | 6 #define CHROME_BROWSER_UI_WINDOW_SIZER_WINDOW_SIZER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "ui/gfx/rect.h" | 11 #include "ui/gfx/rect.h" |
| 12 | 12 |
| 13 class Browser; | 13 class Browser; |
| 14 | 14 |
| 15 // An interface implemented by an object that can retrieve information about | 15 // An interface implemented by an object that can retrieve information about |
| 16 // the monitors on the system. | 16 // the monitors on the system. |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // Providers for persistent storage and monitor metrics. | 154 // Providers for persistent storage and monitor metrics. |
| 155 scoped_ptr<StateProvider> state_provider_; | 155 scoped_ptr<StateProvider> state_provider_; |
| 156 scoped_ptr<MonitorInfoProvider> monitor_info_provider_; | 156 scoped_ptr<MonitorInfoProvider> monitor_info_provider_; |
| 157 | 157 |
| 158 // Note that this browser handle might be NULL. | 158 // Note that this browser handle might be NULL. |
| 159 const Browser* browser_; | 159 const Browser* browser_; |
| 160 | 160 |
| 161 DISALLOW_COPY_AND_ASSIGN(WindowSizer); | 161 DISALLOW_COPY_AND_ASSIGN(WindowSizer); |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 #endif // CHROME_BROWSER_UI_WINDOW_SIZER_H_ | 164 #endif // CHROME_BROWSER_UI_WINDOW_SIZER_WINDOW_SIZER_H_ |
| OLD | NEW |