Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2601)

Unified Diff: content/renderer/pepper/pepper_plugin_delegate_impl.cc

Issue 10414068: Browser Plugin: Fix broken build windows build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Right merge Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698