Home | History | Annotate | Download | only in extensions

Lines Matching defs:scripts

175   // The master went away, so these new scripts aren't useful anymore.
264 // Pickle user scripts and return pointer to the shared memory.
265 static base::SharedMemory* Serialize(const UserScriptList& scripts) {
267 pickle.WriteUInt64(scripts.size());
268 for (size_t i = 0; i < scripts.size(); i++) {
269 const UserScript& script = scripts[i];
274 // Write scripts as 'data' so that we can read it out in the slave without
303 // Scripts now contains list of up-to-date scripts. Load the content in the
305 // back even if no scripts ware found to balance the AddRef/Release calls.
338 // notifying about these scripts and instead just immediately reload.
344 // We've got scripts ready to go.
370 // Add any content scripts inside the extension.
378 const UserScriptList& scripts =
380 for (UserScriptList::const_iterator iter = scripts.begin();
381 iter != scripts.end(); ++iter) {
390 // Remove any content scripts.
437 // Don't allow injection of content scripts into <webview>.
442 // Make sure we only send user scripts to processes in our profile.