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

/external/chromium/chrome/browser/extensions/
H A Dconvert_user_script.cc123 DictionaryValue* content_script = new DictionaryValue(); local
124 content_script->Set(keys::kMatches, matches);
125 content_script->Set(keys::kIncludeGlobs, includes);
126 content_script->Set(keys::kExcludeGlobs, excludes);
127 content_script->Set(keys::kJs, js_files);
130 content_scripts->Append(content_script);
/external/chromium/chrome/common/extensions/
H A Dextension.cc703 // content_script list of the manifest.
704 bool Extension::LoadUserScriptHelper(const DictionaryValue* content_script, argument
715 if (content_script->HasKey(keys::kRunAt)) {
717 if (!content_script->GetString(keys::kRunAt, &run_location)) {
737 if (content_script->HasKey(keys::kAllFrames)) {
739 if (!content_script->GetBoolean(keys::kAllFrames, &all_frames)) {
749 if (!content_script->GetList(keys::kMatches, &matches)) {
798 if (!LoadGlobsHelper(content_script, definition_index, keys::kIncludeGlobs,
803 if (!LoadGlobsHelper(content_script, definition_index, keys::kExcludeGlobs,
810 if (content_script
871 LoadGlobsHelper( const DictionaryValue* content_script, int content_script_index, const char* globs_property_name, std::string* error, void(UserScript::*add_method)(const std::string& glob), UserScript *instance) argument
2060 DictionaryValue* content_script = NULL; local
[all...]

Completed in 71 milliseconds