diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 16:34:34 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 16:34:34 +0000 |
commit | 51c490b5cb0ff02f391e514cfa2ba892e08a2edc (patch) | |
tree | a576c2399f37016a495997786fd6d9244912944d /chrome/test/testing_profile.h | |
parent | cf76214c53788effec9c2e9cf14dbfc91887921e (diff) | |
download | chromium_src-51c490b5cb0ff02f391e514cfa2ba892e08a2edc.zip chromium_src-51c490b5cb0ff02f391e514cfa2ba892e08a2edc.tar.gz chromium_src-51c490b5cb0ff02f391e514cfa2ba892e08a2edc.tar.bz2 |
Implement kCurrentThemeID so we can know what the last theme to be installed was.
BUG=none
TEST=not visible in UI
Review URL: http://codereview.chromium.org/159705
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.h')
-rw-r--r-- | chrome/test/testing_profile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index 0794e3c..e8a2c7a 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -138,6 +138,9 @@ class TestingProfile : public Profile { virtual void SetTheme(Extension* extension) { } virtual void SetNativeTheme() { } virtual void ClearTheme() { } + virtual Extension* GetTheme() { + return NULL; + } virtual ThemeProvider* GetThemeProvider() { return theme_provider_.get(); } |