summaryrefslogtreecommitdiffstats
path: root/chrome/browser/themes/theme_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/themes/theme_service.h')
-rw-r--r--chrome/browser/themes/theme_service.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/themes/theme_service.h b/chrome/browser/themes/theme_service.h
index c5cc1ba..f9c7b30 100644
--- a/chrome/browser/themes/theme_service.h
+++ b/chrome/browser/themes/theme_service.h
@@ -21,7 +21,6 @@
class BrowserThemePack;
class ThemeServiceTest;
-class Extension;
class FilePath;
class Profile;
@@ -29,6 +28,10 @@ namespace color_utils {
struct HSL;
}
+namespace extensions {
+class Extension;
+}
+
namespace gfx {
class Image;
}
@@ -178,7 +181,7 @@ class ThemeService : public base::NonThreadSafe,
#endif
// Set the current theme to the theme defined in |extension|.
- virtual void SetTheme(const Extension* extension);
+ virtual void SetTheme(const extensions::Extension* extension);
// Reset the theme to default.
virtual void UseDefaultTheme();
@@ -281,7 +284,7 @@ class ThemeService : public base::NonThreadSafe,
// Implementation of SetTheme() (and the fallback from LoadThemePrefs() in
// case we don't have a theme pack).
- void BuildFromExtension(const Extension* extension);
+ void BuildFromExtension(const extensions::Extension* extension);
#if defined(TOOLKIT_GTK)
// Loads an image and flips it horizontally if |rtl_enabled| is true.