Index: chrome/renderer/render_view.cc |
=================================================================== |
--- chrome/renderer/render_view.cc (revision 71882) |
+++ chrome/renderer/render_view.cc (working copy) |
@@ -918,8 +918,8 @@ |
ContentSetting setting; |
std::string mime_type; |
Send(new ViewHostMsg_GetPluginInfo( |
- params.url, frame->top()->url(), params.mimeType.utf8(), &found, |
- &info, &setting, &mime_type)); |
+ routing_id_, params.url, frame->top()->url(), params.mimeType.utf8(), |
+ &found, &info, &setting, &mime_type)); |
if (!found || !info.enabled) |
return NULL; |
@@ -2684,7 +2684,8 @@ |
webkit::npapi::WebPluginInfo info; |
GURL url(params.url); |
std::string actual_mime_type; |
- Send(new ViewHostMsg_GetPluginInfo(url, |
+ Send(new ViewHostMsg_GetPluginInfo(routing_id_, |
+ url, |
frame->top()->url(), |
params.mimeType.utf8(), |
&found, |