OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSER_THEME_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ |
6 #define CHROME_BROWSER_BROWSER_THEME_PROVIDER_H_ | 6 #define CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "app/theme_provider.h" | 13 #include "app/theme_provider.h" |
14 #include "base/non_thread_safe.h" | 14 #include "base/non_thread_safe.h" |
15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
16 | 16 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 Profile* profile_; | 265 Profile* profile_; |
266 | 266 |
267 scoped_refptr<BrowserThemePack> theme_pack_; | 267 scoped_refptr<BrowserThemePack> theme_pack_; |
268 | 268 |
269 // The number of infobars currently displayed. | 269 // The number of infobars currently displayed. |
270 int number_of_infobars_; | 270 int number_of_infobars_; |
271 | 271 |
272 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider); | 272 DISALLOW_COPY_AND_ASSIGN(BrowserThemeProvider); |
273 }; | 273 }; |
274 | 274 |
275 #endif // CHROME_BROWSER_BROWSER_THEME_PROVIDER_H_ | 275 #endif // CHROME_BROWSER_THEMES_BROWSER_THEME_PROVIDER_H_ |
OLD | NEW |