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

/external/chromium/chrome/browser/ui/webui/
H A Dshown_sections_handler.cc54 int shown_sections = GetShownSections(prefs); local
55 shown_sections &= ~ALL_SECTIONS_MASK;
56 shown_sections |= section;
57 prefs->SetInteger(prefs::kNTPShownSections, shown_sections);
127 int shown_sections = pref_service->GetInteger(prefs::kNTPShownSections); local
133 if (shown_sections & APPS)
134 shown_sections = APPS;
136 shown_sections = THUMB;
142 pref_service->SetInteger(prefs::kNTPShownSections, shown_sections);
H A Dntp_resource_cache.cc356 // Pass the shown_sections pref early so that we can prevent flicker.
357 const int shown_sections = ShownSectionsHandler::GetShownSections( local
359 localized_strings.SetInteger("shown_sections", shown_sections);
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider.cc4790 const int shown_sections = ShownSectionsHandler::GetShownSections( local
4794 return_value->SetBoolean("apps", shown_sections & APPS ? true : false);
4796 shown_sections & THUMB ? true : false);
4839 int shown_sections = ShownSectionsHandler::GetShownSections(prefs); local
4841 shown_sections &= ~(0xFFFFFFFF & section);
4842 prefs->SetInteger(prefs::kNTPShownSections, shown_sections);
4855 const int shown_sections = ShownSectionsHandler::GetShownSections( local
4859 return_value->SetBoolean("apps", shown_sections & MENU_APPS ? true : false);
4861 shown_sections & MENU_THUMB ? true : false);
4863 shown_sections
4901 int shown_sections = ShownSectionsHandler::GetShownSections(prefs); local
[all...]

Completed in 1289 milliseconds