| 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_GTK_GTK_THEME_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_GTK_GTK_THEME_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_GTK_GTK_THEME_PROVIDER_H_ | 6 #define CHROME_BROWSER_GTK_GTK_THEME_PROVIDER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "app/gtk_integers.h" | 12 #include "app/gtk_integers.h" |
| 14 #include "app/gtk_signal.h" | 13 #include "app/gtk_signal.h" |
| 15 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 16 #include "chrome/browser/browser_theme_provider.h" | 15 #include "chrome/browser/browser_theme_provider.h" |
| 17 #include "chrome/browser/gtk/owned_widget_gtk.h" | 16 #include "chrome/browser/gtk/owned_widget_gtk.h" |
| 18 #include "chrome/common/notification_observer.h" | 17 #include "chrome/common/notification_observer.h" |
| 19 #include "gfx/color_utils.h" | 18 #include "gfx/color_utils.h" |
| 20 | 19 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 269 |
| 271 // The default folder icon and default bookmark icon for the GTK theme. | 270 // The default folder icon and default bookmark icon for the GTK theme. |
| 272 // These are static because the system can only have one theme at a time. | 271 // These are static because the system can only have one theme at a time. |
| 273 // They are cached when they are requested the first time, and cleared when | 272 // They are cached when they are requested the first time, and cleared when |
| 274 // the system theme changes. | 273 // the system theme changes. |
| 275 static GdkPixbuf* default_folder_icon_; | 274 static GdkPixbuf* default_folder_icon_; |
| 276 static GdkPixbuf* default_bookmark_icon_; | 275 static GdkPixbuf* default_bookmark_icon_; |
| 277 }; | 276 }; |
| 278 | 277 |
| 279 #endif // CHROME_BROWSER_GTK_GTK_THEME_PROVIDER_H_ | 278 #endif // CHROME_BROWSER_GTK_GTK_THEME_PROVIDER_H_ |
| OLD | NEW |