| Index: webkit/plugins/ppapi/plugin_module.cc
|
| ===================================================================
|
| --- webkit/plugins/ppapi/plugin_module.cc (revision 212906)
|
| +++ webkit/plugins/ppapi/plugin_module.cc (working copy)
|
| @@ -537,10 +537,11 @@
|
|
|
| PluginInstance* PluginModule::CreateInstance(
|
| PluginDelegate* delegate,
|
| + content::RenderView* render_view,
|
| WebKit::WebPluginContainer* container,
|
| const GURL& plugin_url) {
|
| - PluginInstance* instance = PluginInstance::Create(delegate, this, container,
|
| - plugin_url);
|
| + PluginInstance* instance = PluginInstance::Create(delegate, render_view, this,
|
| + container, plugin_url);
|
| if (!instance) {
|
| LOG(WARNING) << "Plugin doesn't support instance interface, failing.";
|
| return NULL;
|
|
|