/external/chromium/chrome/browser/extensions/ |
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_));
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
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);
|
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
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( 114 tab_value->SetBoolean [all...] |
tabs_event_router.cc | 183 DictionaryValue* tab_value = ExtensionTabUtil::CreateTabValue( local 186 event_args->Append(tab_value); 187 tab_value->SetBoolean(tabs_constants::kSelectedKey, active);
|
/external/chromium_org/chrome/test/automation/ |
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/api/extension_action/ |
extension_action_api.cc | 382 DictionaryValue* tab_value = extensions::ExtensionTabUtil::CreateTabValue( local 384 args->Append(tab_value); [all...] |
/external/chromium_org/chrome/browser/ui/panels/ |
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->SetBoolean [all...] |