Home | History | Annotate | Download | only in extensions

Lines Matching defs:scripts

288 // Pickle user scripts and return pointer to the shared memory.
289 static scoped_ptr<base::SharedMemory> Serialize(const UserScriptList& scripts) {
291 pickle.WriteUInt64(scripts.size());
292 for (size_t i = 0; i < scripts.size(); i++) {
293 const UserScript& script = scripts[i];
298 // Write scripts as 'data' so that we can read it out in the slave without
339 // Scripts now contains list of up-to-date scripts. Load the content in the
341 // back even if no scripts ware found to balance the AddRef/Release calls.
370 // notifying about these scripts and instead just immediately reload.
379 // have a choice between silently omitting all user scripts for new tabs,
389 // We've got scripts ready to go.
416 // Add any content scripts inside the extension.
421 const UserScriptList& scripts =
423 for (UserScriptList::const_iterator iter = scripts.begin();
424 iter != scripts.end();
443 // Remove any content scripts.
508 // Don't allow injection of content scripts into <webview>.
513 // Make sure we only send user scripts to processes in our profile.