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

Unified Diff: chrome/browser/dom_ui/shown_sections_handler.cc

Issue 5340007: NTP update for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address aa's comments Created 10 years, 1 month 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/dom_ui/ntp_resource_cache.cc ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/shown_sections_handler.cc
diff --git a/chrome/browser/dom_ui/shown_sections_handler.cc b/chrome/browser/dom_ui/shown_sections_handler.cc
index 93a672fb7034bfe50c48c79400857aaeb66d7dc3..52d3ae644ea1c2a26687a3b79840f445fda2ce0d 100644
--- a/chrome/browser/dom_ui/shown_sections_handler.cc
+++ b/chrome/browser/dom_ui/shown_sections_handler.cc
@@ -93,7 +93,13 @@ void ShownSectionsHandler::HandleSetShownSections(const ListValue* args) {
// static
void ShownSectionsHandler::RegisterUserPrefs(PrefService* pref_service) {
+#if defined(OS_CHROMEOS)
+ // Default to have expanded APPS and all other secions are minimized.
+ pref_service->RegisterIntegerPref(prefs::kNTPShownSections,
+ APPS | MINIMIZED_THUMB | MINIMIZED_RECENT);
Dmitry Polukhin 2010/11/30 20:06:55 I think if no app are installed, it will show all
+#else
pref_service->RegisterIntegerPref(prefs::kNTPShownSections, THUMB);
+#endif
}
// static
« no previous file with comments | « chrome/browser/dom_ui/ntp_resource_cache.cc ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698