Lines Matching refs:plugins

67   // If on POSIX, we don't want to load the list of NPAPI plugins in-process as
70 // Can't load the plugins on the utility thread when in single process mode
120 const std::vector<WebPluginInfo>& plugins) {
121 target_loop->PostTask(FROM_HERE, base::Bind(callback, plugins));
198 // watch for changes in the paths that are expected to contain plugins.
224 // On ChromeOS the user can't install plugins anyway and on Windows all
225 // important plugins register themselves in the registry so no need to do that.
228 // that will track and if needed reload the list of plugins on runtime.
402 // Make sure plugins are loaded if necessary.
514 std::vector<WebPluginInfo>* plugins,
519 plugins, actual_mime_types);
533 std::vector<WebPluginInfo> plugins;
536 url, mime_type, allow_wildcard, &plugins, &mime_types);
540 for (size_t i = 0; i < plugins.size(); ++i) {
546 &plugins[i])) {
547 *info = plugins[i];
558 std::vector<WebPluginInfo> plugins;
559 PluginList::Singleton()->GetPluginsNoRefresh(&plugins);
561 for (std::vector<WebPluginInfo>::iterator it = plugins.begin();
562 it != plugins.end();
581 // Many plugins on the Mac have .plugin in the actual name, which looks
621 std::vector<WebPluginInfo> plugins;
622 PluginList::Singleton()->GetPlugins(&plugins, NPAPIPluginsSupported());
625 base::Bind(callback, plugins));
634 // If we switch back to loading plugins in process, then we need to make
635 // sure g_thread_init() gets called since plugins may call glib at load.
669 // There should generally be very few plugins so a brute-force search is fine.
768 DVLOG(0) << "NPAPI plugins not supported";
787 DVLOG(0) << "Don't register NPAPI plugins when they're not supported";
798 std::vector<WebPluginInfo>* plugins) {
799 PluginList::Singleton()->GetInternalPlugins(plugins);