HomeSort by relevance Sort by last modified time
    Searched defs:content_scripts (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/browser/extensions/
convert_user_script.cc 129 ListValue* content_scripts = new ListValue(); local
130 content_scripts->Append(content_script);
132 root->Set(keys::kContentScripts, content_scripts);
  /external/chromium/chrome/common/extensions/
extension_unittest.cc 211 ListValue* content_scripts = NULL; local
212 input_value->GetList(keys::kContentScripts, &content_scripts);
213 ASSERT_FALSE(NULL == content_scripts);
214 content_scripts->Set(0, Value::CreateIntegerValue(42));
221 input_value->GetList(keys::kContentScripts, &content_scripts);
223 content_scripts->GetDictionary(0, &user_script);
253 input_value->GetList(keys::kContentScripts, &content_scripts);
254 content_scripts->GetDictionary(0, &user_script);
    [all...]
extension.h 583 const UserScriptList& content_scripts() const { return content_scripts_; } function in class:Extension
    [all...]

Completed in 221 milliseconds