| 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 95a7e675908eb1a4e944dcb933f0035b1fa3d2d3..87fbb70cbcef97caa84e74de9643d13a3f8fa662 100644
|
| --- a/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| +++ b/chrome/browser/ui/blocked_content/popup_blocker_tab_helper.cc
|
| @@ -20,7 +20,7 @@
|
| #include "content/public/browser/web_contents_delegate.h"
|
| #include "third_party/WebKit/public/web/WebWindowFeatures.h"
|
|
|
| -#if defined(OS_ANDROID)
|
| +#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| #include "chrome/browser/ui/android/tab_model/tab_model_list.h"
|
| #endif
|
|
|
| @@ -118,7 +118,7 @@ void PopupBlockerTabHelper::ShowBlockedPopup(int32 id) {
|
| return;
|
| // We set user_gesture to true here, so the new popup gets correctly focused.
|
| popup->params.user_gesture = true;
|
| -#if defined(OS_ANDROID)
|
| +#if defined(OS_ANDROID) && !defined(USE_AURA)
|
| TabModelList::HandlePopupNavigation(&popup->params);
|
| #else
|
| chrome::Navigate(&popup->params);
|
|
|