| Index: content/renderer/browser_plugin/browser_plugin.cc
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
|
| index 71aac853dbb0433adf9862883c1e95fe95b5f11a..77af95770511f2e8a7b272f36c8da5723dc467fe 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin.cc
|
| @@ -90,6 +90,7 @@ BrowserPlugin::BrowserPlugin(
|
| mouse_locked_(false),
|
| browser_plugin_manager_(render_view->GetBrowserPluginManager()),
|
| compositing_enabled_(false),
|
| + embedder_frame_url_(frame->document().url()),
|
| weak_ptr_factory_(this) {
|
| }
|
|
|
| @@ -374,6 +375,7 @@ void BrowserPlugin::Attach(scoped_ptr<base::DictionaryValue> extra_params) {
|
| attach_params.storage_partition_id = storage_partition_id_;
|
| attach_params.persist_storage = persist_storage_;
|
| attach_params.src = GetSrcAttribute();
|
| + attach_params.embedder_frame_url = embedder_frame_url_;
|
| GetDamageBufferWithSizeParams(&attach_params.auto_size_params,
|
| &attach_params.resize_guest_params,
|
| false);
|
|
|