diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 18:27:06 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 18:27:06 +0000 |
commit | 9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634 (patch) | |
tree | 3b7332926a05a1c8382eb27422c385b56b29cb24 /chrome/browser/themes | |
parent | a12f7fbe12afffb4b1b31ec0d6b0988f1f9a6554 (diff) | |
download | chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.zip chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.tar.gz chromium_src-9dd7e3d78c14f67c5c3d78868a3a63bbc4f90634.tar.bz2 |
Move a bunch of random other files to src/ui/base
BUG=none
TEST=none
TBR=brettw
Review URL: http://codereview.chromium.org/6257006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71970 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/themes')
-rw-r--r-- | chrome/browser/themes/browser_theme_provider.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/themes/browser_theme_provider.h b/chrome/browser/themes/browser_theme_provider.h index e400a1f..d3865db 100644 --- a/chrome/browser/themes/browser_theme_provider.h +++ b/chrome/browser/themes/browser_theme_provider.h @@ -10,12 +10,12 @@ #include <set> #include <string> -#include "app/theme_provider.h" #include "base/ref_counted.h" #include "base/threading/non_thread_safe.h" +#include "ui/base/theme_provider.h" namespace color_utils { - struct HSL; +struct HSL; } class BrowserThemePack; @@ -33,7 +33,7 @@ extern "C" NSString* const kBrowserThemeDidChangeNotification; #endif // __OBJC__ class BrowserThemeProvider : public base::NonThreadSafe, - public ThemeProvider { + public ui::ThemeProvider { public: // Public constants used in BrowserThemeProvider and its subclasses: @@ -130,7 +130,7 @@ class BrowserThemeProvider : public base::NonThreadSafe, REPEAT = 3 } Tiling; - // ThemeProvider implementation. + // ui::ThemeProvider implementation. virtual void Init(Profile* profile); virtual SkBitmap* GetBitmapNamed(int id) const; virtual SkColor GetColor(int id) const; |