diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 15:04:47 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 15:04:47 +0000 |
commit | f7e0ab793040070958e2bc7c8556eabe977027c6 (patch) | |
tree | 6daada073ad87ab2f069d260bc949105750540ea /chrome/browser/ui/webui/theme_source.cc | |
parent | a5f50951829755c4f230aa32b5438f6d42eb0a0b (diff) | |
download | chromium_src-f7e0ab793040070958e2bc7c8556eabe977027c6.zip chromium_src-f7e0ab793040070958e2bc7c8556eabe977027c6.tar.gz chromium_src-f7e0ab793040070958e2bc7c8556eabe977027c6.tar.bz2 |
Force NTP reload when a new theme is installed.
BUG=74311
TEST=NTP background updates immediately on theme install.
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=77517
Review URL: http://codereview.chromium.org/6653001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77639 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/theme_source.cc')
-rw-r--r-- | chrome/browser/ui/webui/theme_source.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/theme_source.cc b/chrome/browser/ui/webui/theme_source.cc index 1572017..9c87ce9 100644 --- a/chrome/browser/ui/webui/theme_source.cc +++ b/chrome/browser/ui/webui/theme_source.cc @@ -95,7 +95,9 @@ MessageLoop* ThemeSource::MessageLoopForRequestPath( } bool ThemeSource::ShouldReplaceExistingSource() const { - return false; + // We currently get the css_bytes_ in the ThemeSource constructor, so we need + // to recreate the source itself when a theme changes. + return true; } //////////////////////////////////////////////////////////////////////////////// |