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_LIST_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_LIST_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_LIST_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_LIST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "chrome/browser/ui/host_desktop.h" | 13 #include "ui/gfx/host_desktop_type.h" |
14 | 14 |
15 class Browser; | 15 class Browser; |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class FilePath; | 19 class FilePath; |
20 } | 20 } |
21 | 21 |
22 namespace chrome { | 22 namespace chrome { |
23 class BrowserListObserver; | 23 class BrowserListObserver; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 base::ObserverList<chrome::BrowserListObserver>>::Leaky observers_; | 137 base::ObserverList<chrome::BrowserListObserver>>::Leaky observers_; |
138 | 138 |
139 // Nothing fancy, since we only have two HDTs. | 139 // Nothing fancy, since we only have two HDTs. |
140 static BrowserList* native_instance_; | 140 static BrowserList* native_instance_; |
141 static BrowserList* ash_instance_; | 141 static BrowserList* ash_instance_; |
142 | 142 |
143 DISALLOW_COPY_AND_ASSIGN(BrowserList); | 143 DISALLOW_COPY_AND_ASSIGN(BrowserList); |
144 }; | 144 }; |
145 | 145 |
146 #endif // CHROME_BROWSER_UI_BROWSER_LIST_H_ | 146 #endif // CHROME_BROWSER_UI_BROWSER_LIST_H_ |
OLD | NEW |