#include "chrome/browser/extensions/chrome_extension_function_details.h"
#include "chrome/browser/extensions/browser_extension_window_controller.h"
#include "chrome/browser/extensions/window_controller.h"
#include "chrome/browser/extensions/window_controller_list.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser_window/public/browser_window_interface.h"
#include "chrome/browser/ui/browser_window/public/browser_window_interface_iterator.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_function.h"
#include "extensions/browser/extension_function_dispatcher.h"
#include "extensions/buildflags/buildflags.h"
#include "ui/base/base_window.h"
#if BUILDFLAG(ENABLE_PLATFORM_APPS)
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/app_window_registry.h"
#endif
#if BUILDFLAG(ENABLE_EXTENSIONS)
#include "components/web_modal/web_contents_modal_dialog_manager.h"
#endif
static_assert(BUILDFLAG(ENABLE_EXTENSIONS_CORE));
namespace extensions {
ChromeExtensionFunctionDetails::ChromeExtensionFunctionDetails(
ExtensionFunction* function)
: function_(function) {}
ChromeExtensionFunctionDetails::~ChromeExtensionFunctionDetails() = default;
WindowController* ChromeExtensionFunctionDetails::GetCurrentWindowController()
const {
if (function_->dispatcher()) {
if (WindowController* window_controller =
function_->dispatcher()->GetExtensionWindowController()) {
if (!window_controller->IsDeleteScheduled()) {
return window_controller;
}
}
}
Profile* profile = Profile::FromBrowserContext(function_->browser_context());
WindowController* window_controller = nullptr;
ForEachCurrentBrowserWindowInterfaceOrderedByActivation(
[&](BrowserWindowInterface* browser) {
if (browser->GetProfile() == profile ||
(function_->include_incognito_information() &&
browser->GetProfile()->GetOriginalProfile() == profile)) {
window_controller = BrowserExtensionWindowController::From(browser);
return false;
}
return true;
});
return window_controller;
}
gfx::NativeWindow ChromeExtensionFunctionDetails::GetNativeWindowForUI() {
WindowController* controller =
WindowControllerList::GetInstance()->CurrentWindowForFunction(function_);
if (controller) {
return controller->window()->GetNativeWindow();
}
content::WebContents* sender_web_contents = function_->GetSenderWebContents();
if (sender_web_contents) {
#if BUILDFLAG(IS_ANDROID)
bool supports_modal = !!sender_web_contents->GetTopLevelNativeWindow();
#else
bool supports_modal =
web_modal::WebContentsModalDialogManager::FromWebContents(
sender_web_contents);
#endif
if (supports_modal) {
return sender_web_contents->GetTopLevelNativeWindow();
}
}
#if BUILDFLAG(ENABLE_PLATFORM_APPS)
if (function_->extension() && function_->extension()->is_app()) {
AppWindow* window =
AppWindowRegistry::Get(function_->browser_context())
->GetCurrentAppWindowForApp(function_->extension()->id());
if (window) {
return window->web_contents()->GetTopLevelNativeWindow();
}
}
#endif
std::vector<BrowserWindowInterface*> all_browsers =
GetAllBrowserWindowInterfaces();
BrowserWindowInterface* browser = nullptr;
Profile* profile = Profile::FromBrowserContext(function_->browser_context());
for (auto* candidate : all_browsers) {
if (candidate->GetProfile() == profile) {
browser = candidate;
break;
}
}
if (browser) {
return browser->GetWindow()->GetNativeWindow();
}
return gfx::NativeWindow();
}
}