| Index: chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm b/chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm
|
| index 13493e44d4e864672801ec45ce1b3562f1bedde3..8f906ea7b62e3e1f34ddb01ddb04b7d5ff555ae0 100644
|
| --- a/chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/extensions/extension_popup_controller.mm
|
| @@ -210,7 +210,7 @@ class DevtoolsNotificationBridge : public content::NotificationObserver {
|
| web_modal::WebContentsModalDialogManager::FromWebContents(
|
| host_->host_contents());
|
| if (modalDialogManager &&
|
| - modalDialogManager->IsShowingDialog()) {
|
| + modalDialogManager->IsDialogActive()) {
|
| return;
|
| }
|
| }
|
| @@ -236,7 +236,7 @@ class DevtoolsNotificationBridge : public content::NotificationObserver {
|
| web_modal::WebContentsModalDialogManager::FromWebContents(
|
| host_->host_contents());
|
| if (modalDialogManager &&
|
| - modalDialogManager->IsShowingDialog()) {
|
| + modalDialogManager->IsDialogActive()) {
|
| ignoreWindowDidResignKey_ = YES;
|
| return;
|
| }
|
|
|