Chromium Code Reviews| Index: chrome/browser/ui/webui/ntp/ntp_resource_cache.cc |
| diff --git a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc |
| index b18bf164902635747bebd44ac2b3618c2fff0b43..c0c57d6ff0303c4deb6bb8668bcb3ddd6f24daf0 100644 |
| --- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc |
| +++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc |
| @@ -205,8 +205,8 @@ RefCountedMemory* NTPResourceCache::GetNewTabHTML(bool is_incognito) { |
| if (!new_tab_html_.get()) |
| CreateNewTabHTML(); |
| } |
| - return is_incognito ? new_tab_incognito_html_.get() |
| - : new_tab_html_.get(); |
| + return is_incognito ? new_tab_incognito_html_.get() : |
|
Dan Beam
2012/03/27 10:30:13
tell me if this is not right thing to do or if you
|
| + new_tab_html_.get(); |
| } |
| RefCountedMemory* NTPResourceCache::GetNewTabCSS(bool is_incognito) { |
| @@ -218,8 +218,8 @@ RefCountedMemory* NTPResourceCache::GetNewTabCSS(bool is_incognito) { |
| if (!new_tab_css_.get()) |
| CreateNewTabCSS(); |
| } |
| - return is_incognito ? new_tab_incognito_css_.get() |
| - : new_tab_css_.get(); |
| + return is_incognito ? new_tab_incognito_css_.get() : |
| + new_tab_css_.get(); |
| } |
| void NTPResourceCache::Observe(int type, |