Searched refs:tab_value (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dash_panel_contents.cc83 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 Dvalue_helper.cc36 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 Dforeign_session_handler.cc228 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 Dexecute_code_in_tab_function.cc62 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 Dextension_message_service.cc160 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 Drecently_closed_tabs_handler.cc43 DictionaryValue* tab_value = new DictionaryValue(); local
44 TabToValue(window.tabs[i], tab_value);
45 tab_values->Append(tab_value);
H A Dforeign_session_handler.cc388 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 Dpanel.cc96 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 Dbrowser_proxy.cc312 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 Dextension_action.h292 if (const T* tab_value = FindOrNull(map, tab_id)) {
293 return *tab_value;
H A Dbrowser_event_router.cc169 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 266 milliseconds