Home
last modified time | relevance | path

Searched refs:tab_value (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/tabs/
Dash_panel_contents.cc84 base::DictionaryValue* tab_value = CreateTabValue(extension, 0); in CreateWindowValueWithTabs() local
85 if (tab_value) { in CreateWindowValueWithTabs()
87 tab_list->Append(tab_value); in CreateWindowValueWithTabs()
103 base::DictionaryValue* tab_value = new base::DictionaryValue(); in CreateTabValue() local
104 tab_value->SetInteger(extensions::tabs_constants::kIdKey, in CreateTabValue()
106 tab_value->SetInteger(extensions::tabs_constants::kIndexKey, 0); in CreateTabValue()
108 tab_value->SetInteger(extensions::tabs_constants::kWindowIdKey, window_id); in CreateTabValue()
109 tab_value->SetString( in CreateTabValue()
111 tab_value->SetString( in CreateTabValue()
115 tab_value->SetBoolean(extensions::tabs_constants::kActiveKey, in CreateTabValue()
[all …]
Dtabs_event_router.cc187 base::DictionaryValue* tab_value = ExtensionTabUtil::CreateTabValue( in WillDispatchTabCreatedEvent() local
190 event_args->Append(tab_value); in WillDispatchTabCreatedEvent()
191 tab_value->SetBoolean(tabs_constants::kSelectedKey, active); in WillDispatchTabCreatedEvent()
/external/chromium_org/chrome/browser/ui/panels/
Dpanel.cc99 base::DictionaryValue* tab_value = CreateTabValue(extension, 0); in CreateWindowValueWithTabs() local
100 if (tab_value) { in CreateWindowValueWithTabs()
102 tab_list->Append(tab_value); in CreateWindowValueWithTabs()
118 base::DictionaryValue* tab_value = new base::DictionaryValue(); in CreateTabValue() local
119 tab_value->SetInteger(extensions::tabs_constants::kIdKey, in CreateTabValue()
121 tab_value->SetInteger(extensions::tabs_constants::kIndexKey, 0); in CreateTabValue()
122 tab_value->SetInteger( in CreateTabValue()
125 tab_value->SetString( in CreateTabValue()
127 tab_value->SetString(extensions::tabs_constants::kStatusKey, in CreateTabValue()
130 tab_value->SetBoolean( in CreateTabValue()
[all …]
/external/chromium_org/chrome/browser/ui/webui/ntp/
Drecently_closed_tabs_handler.cc38 base::DictionaryValue* tab_value = new base::DictionaryValue(); in WindowToValue() local
39 TabToValue(window.tabs[i], tab_value); in WindowToValue()
40 tab_values->Append(tab_value); in WindowToValue()
Dforeign_session_handler.cc394 scoped_ptr<base::DictionaryValue> tab_value(new base::DictionaryValue()); in SessionWindowToValue() local
395 if (SessionTabToValue(*window.tabs[i], tab_value.get())) { in SessionWindowToValue()
398 tab_values->Append(tab_value.release()); in SessionWindowToValue()
/external/chromium_org/chrome/browser/extensions/
Dextension_action.h245 if (const T* tab_value = FindOrNull(map, tab_id)) { in GetValue() local
246 return *tab_value; in GetValue()
/external/chromium_org/chrome/browser/extensions/api/extension_action/
Dextension_action_api.cc301 base::DictionaryValue* tab_value = in ExtensionActionExecuted() local
303 args->Append(tab_value); in ExtensionActionExecuted()
/external/chromium_org/chrome/browser/extensions/api/sessions/
Dsessions_api.cc409 scoped_ptr<base::DictionaryValue> tab_value( in SetResultRestoredTab() local
411 scoped_ptr<tabs::Tab> tab(tabs::Tab::FromValue(*tab_value)); in SetResultRestoredTab()