Searched refs:content_script (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dcontent_scripts_handler.cc39 // from an entry in the content_script lists of the manifest.
40 bool LoadGlobsHelper(const base::DictionaryValue* content_script, argument
46 if (!content_script->HasKey(globs_property_name))
50 if (!content_script->GetList(globs_property_name, &list)) {
76 // content_script list of the manifest.
77 bool LoadUserScriptFromDictionary(const base::DictionaryValue* content_script, argument
83 if (content_script->HasKey(keys::kRunAt)) {
85 if (!content_script->GetString(keys::kRunAt, &run_location)) {
107 if (content_script->HasKey(keys::kAllFrames)) {
109 if (!content_script
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dconvert_user_script.cc140 base::DictionaryValue* content_script = new base::DictionaryValue(); local
141 content_script->Set(keys::kMatches, matches);
142 content_script->Set(keys::kExcludeMatches, exclude_matches);
143 content_script->Set(keys::kIncludeGlobs, includes);
144 content_script->Set(keys::kExcludeGlobs, excludes);
145 content_script->Set(keys::kJs, js_files);
148 content_script->SetString(keys::kRunAt, values::kRunAtDocumentStart);
150 content_script->SetString(keys::kRunAt, values::kRunAtDocumentEnd);
153 content_script->SetString(keys::kRunAt, values::kRunAtDocumentIdle);
156 content_scripts->Append(content_script);
[all...]

Completed in 99 milliseconds