Searched defs:tints_value (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dtheme_handler.cc93 const base::DictionaryValue* tints_value = NULL; local
94 if (!theme_value->GetDictionary(keys::kThemeTints, &tints_value))
98 for (base::DictionaryValue::Iterator iter(*tints_value); !iter.IsAtEnd();
111 theme_info->theme_tints_.reset(tints_value->DeepCopy());
/external/chromium/chrome/browser/themes/
H A Dbrowser_theme_pack.cc601 void BrowserThemePack::BuildTintsFromJSON(DictionaryValue* tints_value) { argument
610 if (!tints_value)
613 // Parse the incoming data from |tints_value| into an intermediary structure.
615 for (DictionaryValue::key_iterator iter(tints_value->begin_keys());
616 iter != tints_value->end_keys(); ++iter) {
618 if (tints_value->GetList(*iter, &tint_list) &&
/external/chromium_org/chrome/browser/themes/
H A Dbrowser_theme_pack.cc954 const base::DictionaryValue* tints_value) {
963 if (!tints_value)
966 // Parse the incoming data from |tints_value| into an intermediary structure.
968 for (DictionaryValue::Iterator iter(*tints_value); !iter.IsAtEnd();
953 BuildTintsFromJSON( const base::DictionaryValue* tints_value) argument
/external/chromium/chrome/common/extensions/
H A Dextension.cc1901 DictionaryValue* tints_value = NULL; local
1902 if (theme_value->GetDictionary(keys::kThemeTints, &tints_value)) {
1904 for (DictionaryValue::key_iterator iter = tints_value->begin_keys();
1905 iter != tints_value->end_keys(); ++iter) {
1909 if (!tints_value->GetListWithoutPathExpansion(*iter, &tint_list) ||
1918 theme_tints_.reset(tints_value->DeepCopy());

Completed in 163 milliseconds