| Index: chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| diff --git a/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc b/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| index ba693e6f91fc8feaaf1c8914aed50b620f2efea5..ecdd71b0ca9e8e5736a3ae5d04cf53d886048778 100644
|
| --- a/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| +++ b/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| @@ -16,6 +16,7 @@
|
| #include "content/public/browser/navigation_controller.h"
|
| #include "content/public/browser/navigation_details.h"
|
| #include "content/public/browser/navigation_entry.h"
|
| +#include "content/public/browser/render_view_host.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "third_party/WebKit/public/web/WebWindowFeatures.h"
|
|
|
| @@ -125,7 +126,8 @@ void PopupBlockerTabHelper::ShowBlockedPopup(int32_t id) {
|
| #endif
|
| if (popup->params.target_contents) {
|
| popup->params.target_contents->Send(new ChromeViewMsg_SetWindowFeatures(
|
| - popup->params.target_contents->GetRoutingID(), popup->window_features));
|
| + popup->params.target_contents->GetRenderViewHost()->GetRoutingID(),
|
| + popup->window_features));
|
| }
|
| blocked_popups_.Remove(id);
|
| if (blocked_popups_.IsEmpty())
|
|
|