blob: 37b7d2069ad1e1139e3d7017b568296a8b930fb4 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_BROWSER_EXTENSION_WINDOW_CONTROLLER_H_
#define CHROME_BROWSER_EXTENSIONS_BROWSER_EXTENSION_WINDOW_CONTROLLER_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/window_controller.h"
class Browser;
class GURL;
namespace extensions {
class Extension;
class BrowserExtensionWindowController : public WindowController {
public:
explicit BrowserExtensionWindowController(Browser* browser);
BrowserExtensionWindowController(const BrowserExtensionWindowController&) =
delete;
BrowserExtensionWindowController& operator=(
const BrowserExtensionWindowController&) = delete;
~BrowserExtensionWindowController() override;
// Sets the window's fullscreen state. |extension_url| provides the url
// associated with the extension (used by FullscreenController).
void SetFullscreenMode(bool is_fullscreen, const GURL& extension_url) const;
// WindowController implementation.
int GetWindowId() const override;
std::string GetWindowTypeText() const override;
bool CanClose(Reason* reason) const override;
Browser* GetBrowser() const override;
bool IsVisibleToTabsAPIForExtension(
const Extension* extension,
bool allow_dev_tools_windows) const override;
private:
const raw_ptr<Browser> browser_;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_BROWSER_EXTENSION_WINDOW_CONTROLLER_H_