| Index: content/renderer/pepper/plugin_module.cc
|
| diff --git a/content/renderer/pepper/plugin_module.cc b/content/renderer/pepper/plugin_module.cc
|
| index 9a467940d4174930f646d301e576558574485167..a2bef8358a69aaff7dbfeebcc080cc08955e89ef 100644
|
| --- a/content/renderer/pepper/plugin_module.cc
|
| +++ b/content/renderer/pepper/plugin_module.cc
|
| @@ -540,9 +540,10 @@ bool PluginModule::SupportsInterface(const char* name) {
|
| PepperPluginInstanceImpl* PluginModule::CreateInstance(
|
| RenderFrameImpl* render_frame,
|
| blink::WebPluginContainer* container,
|
| - const GURL& plugin_url) {
|
| + const GURL& plugin_url,
|
| + const blink::WebURL& top_frame_url) {
|
| PepperPluginInstanceImpl* instance = PepperPluginInstanceImpl::Create(
|
| - render_frame, this, container, plugin_url);
|
| + render_frame, this, container, plugin_url, top_frame_url);
|
| if (!instance) {
|
| LOG(WARNING) << "Plugin doesn't support instance interface, failing.";
|
| return NULL;
|
|
|