summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/blocked_plugin.cc
diff options
context:
space:
mode:
authorbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 08:18:24 +0000
committerbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-03 08:18:24 +0000
commit7a13e7926699ad5d03f2d6e121b7bdb68ca05680 (patch)
treebc0875a8673be9bd54b0c126b76cc4efdb200fa3 /chrome/renderer/blocked_plugin.cc
parentd3f7e4fc4eedd2ec10877885cfd286aac1abacc6 (diff)
downloadchromium_src-7a13e7926699ad5d03f2d6e121b7bdb68ca05680.zip
chromium_src-7a13e7926699ad5d03f2d6e121b7bdb68ca05680.tar.gz
chromium_src-7a13e7926699ad5d03f2d6e121b7bdb68ca05680.tar.bz2
Replace ViewHostMsg_GetPluginPath with ViewHostMsg_GetPluginInfo.
This enables the renderer to get more information about a plugin than just the path. TEST=none BUG=none Review URL: http://codereview.chromium.org/3015029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54719 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/blocked_plugin.cc')
-rw-r--r--chrome/renderer/blocked_plugin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/blocked_plugin.cc b/chrome/renderer/blocked_plugin.cc
index 4f981da..3e891b3 100644
--- a/chrome/renderer/blocked_plugin.cc
+++ b/chrome/renderer/blocked_plugin.cc
@@ -78,8 +78,8 @@ void BlockedPlugin::LoadPlugin() {
WebPlugin* new_plugin =
render_view_->CreatePluginInternal(frame_,
plugin_params_,
- std::string(),
- FilePath());
+ NULL,
+ std::string());
if (new_plugin && new_plugin->initialize(container)) {
container->setPlugin(new_plugin);
plugin_->ReplayReceivedData(new_plugin);