Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc |
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
index 999bda3e03734163c9afeae1d9de65d99092588b..9bfcfd16aeca06cf756c5820668d03678990b98c 100644 |
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
@@ -278,14 +278,15 @@ scoped_refptr<webkit::ppapi::PluginModule> |
if (module) |
return module; |
+ FilePath path(kBrowserPluginPath); |
scoped_refptr<PepperHungPluginFilter> hung_filter( |
- new PepperHungPluginFilter(FilePath(kBrowserPluginPath), |
+ new PepperHungPluginFilter(path, |
render_view_->routing_id(), |
guest_process_id)); |
// Create a new HostDispatcher for the proxying, and hook it to a new |
// PluginModule. |
module = new webkit::ppapi::PluginModule(kBrowserPluginName, |
- FilePath(kBrowserPluginPath), |
+ path, |
registry); |
RenderThreadImpl::current()->browser_plugin_registry()->AddModule( |
guest_process_id, module); |