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

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: default to close THUMB and RECENT section 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
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);
+#else
pref_service->RegisterIntegerPref(prefs::kNTPShownSections, THUMB);
+#endif
}
// static

Powered by Google App Engine
This is Rietveld 408576698