Home
last modified time | relevance | path

Searched refs:shown_sections (Results 1 – 3 of 3) sorted by relevance

/external/chromium/chrome/browser/ui/webui/
Dshown_sections_handler.cc54 int shown_sections = GetShownSections(prefs); in SetShownSection() local
55 shown_sections &= ~ALL_SECTIONS_MASK; in SetShownSection()
56 shown_sections |= section; in SetShownSection()
57 prefs->SetInteger(prefs::kNTPShownSections, shown_sections); in SetShownSection()
127 int shown_sections = pref_service->GetInteger(prefs::kNTPShownSections); in MigrateUserPrefs() local
133 if (shown_sections & APPS) in MigrateUserPrefs()
134 shown_sections = APPS; in MigrateUserPrefs()
136 shown_sections = THUMB; in MigrateUserPrefs()
142 pref_service->SetInteger(prefs::kNTPShownSections, shown_sections); in MigrateUserPrefs()
Dntp_resource_cache.cc357 const int shown_sections = ShownSectionsHandler::GetShownSections( in CreateNewTabHTML() local
359 localized_strings.SetInteger("shown_sections", shown_sections); in CreateNewTabHTML()
/external/chromium/chrome/browser/automation/
Dtesting_automation_provider.cc4790 const int shown_sections = ShownSectionsHandler::GetShownSections( in GetNTPThumbnailMode() local
4794 return_value->SetBoolean("apps", shown_sections & APPS ? true : false); in GetNTPThumbnailMode()
4796 shown_sections & THUMB ? true : false); in GetNTPThumbnailMode()
4839 int shown_sections = ShownSectionsHandler::GetShownSections(prefs); in SetNTPThumbnailMode() local
4841 shown_sections &= ~(0xFFFFFFFF & section); in SetNTPThumbnailMode()
4842 prefs->SetInteger(prefs::kNTPShownSections, shown_sections); in SetNTPThumbnailMode()
4855 const int shown_sections = ShownSectionsHandler::GetShownSections( in GetNTPMenuMode() local
4859 return_value->SetBoolean("apps", shown_sections & MENU_APPS ? true : false); in GetNTPMenuMode()
4861 shown_sections & MENU_THUMB ? true : false); in GetNTPMenuMode()
4863 shown_sections & MENU_RECENT ? true : false); in GetNTPMenuMode()
[all …]