Index: chrome/renderer/render_view.cc |
=================================================================== |
--- chrome/renderer/render_view.cc (revision 25626) |
+++ chrome/renderer/render_view.cc (working copy) |
@@ -2110,7 +2110,6 @@ |
webkit_glue::WebPluginDelegate* RenderView::CreatePluginDelegate( |
const GURL& url, |
const std::string& mime_type, |
- const std::string& clsid, |
std::string* actual_mime_type) { |
if (!PluginChannelHost::IsListening()) |
return NULL; |
@@ -2121,9 +2120,8 @@ |
policy_url = main_frame->url(); |
FilePath path; |
- render_thread_->Send( |
- new ViewHostMsg_GetPluginPath(url, policy_url, mime_type, clsid, &path, |
- actual_mime_type)); |
+ render_thread_->Send(new ViewHostMsg_GetPluginPath( |
+ url, policy_url, mime_type, &path, actual_mime_type)); |
if (path.value().empty()) |
return NULL; |
@@ -2143,7 +2141,7 @@ |
#endif |
} |
- return new WebPluginDelegateProxy(*mime_type_to_use, clsid, AsWeakPtr()); |
+ return new WebPluginDelegateProxy(*mime_type_to_use, AsWeakPtr()); |
} |
void RenderView::CreatedPluginWindow(gfx::PluginWindowHandle window) { |