diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 16:44:41 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 16:44:41 +0000 |
commit | 47f47fc49190d27ccec1635cd6f6de2421011d82 (patch) | |
tree | e5bf979a79439ab02aa27ef0a9ad6828b68b3190 /chrome/browser/automation | |
parent | 51c490b5cb0ff02f391e514cfa2ba892e08a2edc (diff) | |
download | chromium_src-47f47fc49190d27ccec1635cd6f6de2421011d82.zip chromium_src-47f47fc49190d27ccec1635cd6f6de2421011d82.tar.gz chromium_src-47f47fc49190d27ccec1635cd6f6de2421011d82.tar.bz2 |
Put forwarding function for GetTheme into the automation profile.
TBR
Review URL: http://codereview.chromium.org/159794
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22271 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation')
-rw-r--r-- | chrome/browser/automation/automation_profile_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/automation/automation_profile_impl.h b/chrome/browser/automation/automation_profile_impl.h index 2a9b133..28b34d9 100644 --- a/chrome/browser/automation/automation_profile_impl.h +++ b/chrome/browser/automation/automation_profile_impl.h @@ -101,6 +101,9 @@ class AutomationProfileImpl : public Profile { virtual void ClearTheme() { return original_profile_->ClearTheme(); } + virtual Extension* GetTheme() { + return original_profile_->GetTheme(); + } virtual ThemeProvider* GetThemeProvider() { return original_profile_->GetThemeProvider(); } |