| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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_SETTINGS_WINDOW_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_UI_SETTINGS_WINDOW_MANAGER_H_ |
| 6 #define CHROME_BROWSER_UI_SETTINGS_WINDOW_MANAGER_H_ | 6 #define CHROME_BROWSER_UI_SETTINGS_WINDOW_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "components/sessions/session_id.h" | 13 #include "components/sessions/core/session_id.h" |
| 14 | 14 |
| 15 class Browser; | 15 class Browser; |
| 16 class GURL; | 16 class GURL; |
| 17 class Profile; | 17 class Profile; |
| 18 | 18 |
| 19 namespace chrome { | 19 namespace chrome { |
| 20 | 20 |
| 21 class SettingsWindowManagerObserver; | 21 class SettingsWindowManagerObserver; |
| 22 | 22 |
| 23 // Class for managing settings windows when --enable-settings-window is enabled. | 23 // Class for managing settings windows when --enable-settings-window is enabled. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 50 | 50 |
| 51 base::ObserverList<SettingsWindowManagerObserver> observers_; | 51 base::ObserverList<SettingsWindowManagerObserver> observers_; |
| 52 ProfileSessionMap settings_session_map_; | 52 ProfileSessionMap settings_session_map_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(SettingsWindowManager); | 54 DISALLOW_COPY_AND_ASSIGN(SettingsWindowManager); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace chrome | 57 } // namespace chrome |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_UI_SETTINGS_WINDOW_MANAGER_H_ | 59 #endif // CHROME_BROWSER_UI_SETTINGS_WINDOW_MANAGER_H_ |
| OLD | NEW |