Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1658)

Unified Diff: chrome/browser/ui/webui/ntp/ntp_resource_cache.cc

Issue 9861016: [NTP4] Fix theme and bookmarks bar notifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/new_incognito_tab_theme.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() :
+ 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,
« no previous file with comments | « chrome/browser/resources/new_incognito_tab_theme.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698