Searched refs:tab_value (Results 1 - 11 of 11) sorted by relevance
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
H A D | ash_panel_contents.cc | 83 base::DictionaryValue* tab_value = CreateTabValue(extension, 0); local 84 if (tab_value) { 86 tab_list->Append(tab_value); 102 base::DictionaryValue* tab_value = new base::DictionaryValue(); 103 tab_value->SetInteger(extensions::tabs_constants::kIdKey, 105 tab_value->SetInteger(extensions::tabs_constants::kIndexKey, 0); 107 tab_value->SetInteger(extensions::tabs_constants::kWindowIdKey, window_id); 108 tab_value->SetString( 110 tab_value->SetString( 113 tab_value [all...] |
/external/chromium/chrome/browser/ui/webui/ |
H A D | value_helper.cc | 36 scoped_ptr<DictionaryValue> tab_value(new DictionaryValue()); 37 if (TabToValue(window.tabs[i], tab_value.get())) 38 tab_values->Append(tab_value.release());
|
H A D | foreign_session_handler.cc | 228 scoped_ptr<DictionaryValue> tab_value(new DictionaryValue()); 229 if (SessionTabToValue(*window.tabs[i], tab_value.get())) 230 tab_values->Append(tab_value.release());
|
/external/chromium/chrome/browser/extensions/ |
H A D | execute_code_in_tab_function.cc | 62 Value* tab_value = NULL; local 63 EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &tab_value)); 64 if (tab_value->IsType(Value::TYPE_NULL)) { 73 EXTENSION_FUNCTION_VALIDATE(tab_value->GetAsInteger(&execute_tab_id_));
|
H A D | extension_message_service.cc | 160 scoped_ptr<DictionaryValue> tab_value( 162 base::JSONWriter::Write(tab_value.get(), false, &tab_json); 199 scoped_ptr<DictionaryValue> tab_value( 201 base::JSONWriter::Write(tab_value.get(), false, &tab_json);
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
H A D | recently_closed_tabs_handler.cc | 43 DictionaryValue* tab_value = new DictionaryValue(); local 44 TabToValue(window.tabs[i], tab_value); 45 tab_values->Append(tab_value);
|
H A D | foreign_session_handler.cc | 388 scoped_ptr<DictionaryValue> tab_value(new DictionaryValue()); 389 if (SessionTabToValue(*window.tabs[i], tab_value.get())) { 392 tab_values->Append(tab_value.release());
|
/external/chromium_org/chrome/browser/ui/panels/ |
H A D | panel.cc | 96 DictionaryValue* tab_value = CreateTabValue(extension, 0); local 97 if (tab_value) { 99 tab_list->Append(tab_value); 115 DictionaryValue* tab_value = new DictionaryValue(); local 116 tab_value->SetInteger(extensions::tabs_constants::kIdKey, 118 tab_value->SetInteger(extensions::tabs_constants::kIndexKey, 0); 119 tab_value->SetInteger(extensions::tabs_constants::kWindowIdKey, 121 tab_value->SetString( 123 tab_value->SetString(extensions::tabs_constants::kStatusKey, 126 tab_value [all...] |
/external/chromium_org/chrome/test/automation/ |
H A D | browser_proxy.cc | 312 Value* tab_value; local 315 if (!tabs_list->Get(i, &tab_value) || 316 tab_value->GetType() != Value::TYPE_DICTIONARY) 318 tab_dict = static_cast<DictionaryValue*>(tab_value);
|
/external/chromium_org/chrome/browser/extensions/ |
H A D | extension_action.h | 292 if (const T* tab_value = FindOrNull(map, tab_id)) { 293 return *tab_value;
|
H A D | browser_event_router.cc | 169 DictionaryValue* tab_value = ExtensionTabUtil::CreateTabValue( local 172 event_args->Append(tab_value); 173 tab_value->SetBoolean(tab_keys::kSelectedKey, active); 438 DictionaryValue* tab_value = ExtensionTabUtil::CreateTabValue( local 440 event_args->Set(2, tab_value); 636 DictionaryValue* tab_value = ExtensionTabUtil::CreateTabValue( local 638 args->Append(tab_value);
|
Completed in 651 milliseconds