Searched refs:tab_value (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
D | ash_panel_contents.cc | 84 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 …]
|
D | tabs_event_router.cc | 187 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/ |
D | panel.cc | 99 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/ |
D | recently_closed_tabs_handler.cc | 38 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()
|
D | foreign_session_handler.cc | 394 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/ |
D | extension_action.h | 245 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/ |
D | extension_action_api.cc | 301 base::DictionaryValue* tab_value = in ExtensionActionExecuted() local 303 args->Append(tab_value); in ExtensionActionExecuted()
|
/external/chromium_org/chrome/browser/extensions/api/sessions/ |
D | sessions_api.cc | 409 scoped_ptr<base::DictionaryValue> tab_value( in SetResultRestoredTab() local 411 scoped_ptr<tabs::Tab> tab(tabs::Tab::FromValue(*tab_value)); in SetResultRestoredTab()
|