Home | History | Annotate | Download | only in browser

Lines Matching defs:plugin_path

252     const base::FilePath& plugin_path) {
254 if (iter->info().path == plugin_path)
262 const base::FilePath& plugin_path,
265 if (iter->plugin_path() == plugin_path &&
276 if (iter->plugin_path() == broker_path)
285 const base::FilePath& plugin_path) {
288 if (filter_ && !filter_->CanLoadPlugin(render_process_id, plugin_path))
291 PluginProcessHost* plugin_host = FindNpapiPluginProcess(plugin_path);
296 if (!GetPluginInfoByPath(plugin_path, &info)) {
325 const base::FilePath& plugin_path,
329 if (filter_ && !filter_->CanLoadPlugin(render_process_id, plugin_path)) {
330 VLOG(1) << "Unable to load ppapi plugin: " << plugin_path.MaybeAsASCII();
335 FindPpapiPluginProcess(plugin_path, profile_data_directory);
340 PepperPluginInfo* info = GetRegisteredPpapiPluginInfo(plugin_path);
343 << plugin_path.MaybeAsASCII();
361 << plugin_path.MaybeAsASCII();
369 const base::FilePath& plugin_path) {
372 if (filter_ && !filter_->CanLoadPlugin(render_process_id, plugin_path))
375 PpapiPluginProcessHost* plugin_host = FindPpapiBrokerProcess(plugin_path);
380 PepperPluginInfo* info = GetRegisteredPpapiPluginInfo(plugin_path);
416 const base::FilePath& plugin_path,
420 render_process_id, plugin_path, profile_data_directory);
475 base::FilePath plugin_path;
477 plugin_path = info.path;
485 plugin_path,
491 const base::FilePath& plugin_path,
501 render_process_id, plugin_path);
556 bool PluginServiceImpl::GetPluginInfoByPath(const base::FilePath& plugin_path,
564 if (it->path == plugin_path) {
671 const base::FilePath& plugin_path) {
674 if (ppapi_plugins_[i].path == plugin_path) {
687 if (!GetPluginInfoByPath(plugin_path, &webplugin_info))
714 void PluginServiceImpl::ForcePluginShutdown(const base::FilePath& plugin_path) {
719 base::Unretained(this), plugin_path));
723 PluginProcessHost* plugin = FindNpapiPluginProcess(plugin_path);