Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/extensions/
Dexecute_code_in_tab_function.cc38 DictionaryValue* script_info; in RunImpl() local
39 EXTENSION_FUNCTION_VALIDATE(args_->GetDictionary(1, &script_info)); in RunImpl()
40 size_t number_of_value = script_info->size(); in RunImpl()
45 bool has_code = script_info->HasKey(keys::kCodeKey); in RunImpl()
46 bool has_file = script_info->HasKey(keys::kFileKey); in RunImpl()
90 if (script_info->HasKey(keys::kAllFramesKey)) { in RunImpl()
91 if (!script_info->GetBoolean(keys::kAllFramesKey, &all_frames_)) in RunImpl()
96 if (script_info->HasKey(keys::kCodeKey)) { in RunImpl()
97 if (!script_info->GetString(keys::kCodeKey, &code_string)) in RunImpl()
108 if (script_info->HasKey(keys::kFileKey)) { in RunImpl()
[all …]