Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/ui/webui/
Dvalue_helper.cc36 scoped_ptr<DictionaryValue> tab_value(new DictionaryValue()); in WindowToValue() local
37 if (TabToValue(window.tabs[i], tab_value.get())) in WindowToValue()
38 tab_values->Append(tab_value.release()); in WindowToValue()
Dforeign_session_handler.cc228 scoped_ptr<DictionaryValue> tab_value(new DictionaryValue()); in SessionWindowToValue() local
229 if (SessionTabToValue(*window.tabs[i], tab_value.get())) in SessionWindowToValue()
230 tab_values->Append(tab_value.release()); in SessionWindowToValue()
/external/chromium/chrome/browser/extensions/
Dexecute_code_in_tab_function.cc62 Value* tab_value = NULL; in RunImpl() local
63 EXTENSION_FUNCTION_VALIDATE(args_->Get(0, &tab_value)); in RunImpl()
64 if (tab_value->IsType(Value::TYPE_NULL)) { in RunImpl()
73 EXTENSION_FUNCTION_VALIDATE(tab_value->GetAsInteger(&execute_tab_id_)); in RunImpl()
Dextension_message_service.cc160 scoped_ptr<DictionaryValue> tab_value( in OpenChannelToExtension() local
162 base::JSONWriter::Write(tab_value.get(), false, &tab_json); in OpenChannelToExtension()
199 scoped_ptr<DictionaryValue> tab_value( in OpenChannelToTab() local
201 base::JSONWriter::Write(tab_value.get(), false, &tab_json); in OpenChannelToTab()