Home | History | Annotate | Download | only in panels

Lines Matching refs:tab_value

97   base::DictionaryValue* tab_value = CreateTabValue(extension, 0);
98 if (tab_value) {
100 tab_list->Append(tab_value);
116 base::DictionaryValue* tab_value = new base::DictionaryValue();
117 tab_value->SetInteger(extensions::tabs_constants::kIdKey,
119 tab_value->SetInteger(extensions::tabs_constants::kIndexKey, 0);
120 tab_value->SetInteger(extensions::tabs_constants::kWindowIdKey,
122 tab_value->SetString(
124 tab_value->SetString(extensions::tabs_constants::kStatusKey,
127 tab_value->SetBoolean(
129 tab_value->SetBoolean(extensions::tabs_constants::kSelectedKey, true);
130 tab_value->SetBoolean(extensions::tabs_constants::kHighlightedKey, true);
131 tab_value->SetBoolean(extensions::tabs_constants::kPinnedKey, false);
132 tab_value->SetString(
134 tab_value->SetBoolean(
137 return tab_value;