// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/extensions/api/tabs/windows_util.h" #include "chrome/browser/extensions/window_controller.h" #include "content/public/browser/web_contents.h" #include "extensions/browser/extension_function.h" #include "ui/base/base_window.h" #include "ui/views/widget/widget.h" namespace windows_util { // Views implementation of CalledFromChildWindow. bool CalledFromChildWindow(ExtensionFunction* function, const extensions::WindowController* controller) { … } } // namespace windows_util