1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// Copyright 2023 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_UI_VIEWS_EXTENSIONS_EXTENSIONS_MENU_VIEW_CONTROLLER_H_
#define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSIONS_MENU_VIEW_CONTROLLER_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
#include "chrome/browser/ui/toolbar/toolbar_actions_model.h"
#include "chrome/browser/ui/views/extensions/extensions_menu_handler.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/permissions_manager.h"
#include "extensions/common/extension.h"
#include "ui/views/view_tracker.h"
namespace views {
class BubbleDialogDelegate;
class View;
} // namespace views
class Browser;
class ExtensionsContainer;
class ExtensionsMenuMainPageView;
class ExtensionsMenuSitePermissionsPageView;
class ToolbarActionsModel;
class ExtensionsMenuViewController
: public ExtensionsMenuHandler,
public TabStripModelObserver,
public ToolbarActionsModel::Observer,
public extensions::PermissionsManager::Observer {
public:
ExtensionsMenuViewController(Browser* browser,
ExtensionsContainer* extensions_container,
views::View* bubble_contents,
views::BubbleDialogDelegate* dialog_delegate);
ExtensionsMenuViewController(const ExtensionsMenuViewController&) = delete;
const ExtensionsMenuViewController& operator=(
const ExtensionsMenuViewController&) = delete;
~ExtensionsMenuViewController() override;
// ExtensionsMenuHandler:
void OpenMainPage() override;
void OpenSitePermissionsPage(
const extensions::ExtensionId& extension_id) override;
void CloseBubble() override;
void OnSiteSettingsToggleButtonPressed(bool is_on) override;
void OnSiteAccessSelected(
const extensions::ExtensionId& extension_id,
extensions::PermissionsManager::UserSiteAccess site_access) override;
void OnExtensionToggleSelected(const extensions::ExtensionId& extension_id,
bool is_on) override;
void OnReloadPageButtonClicked() override;
void OnAllowExtensionClicked(
const extensions::ExtensionId& extension_id) override;
void OnDismissExtensionClicked(
const extensions::ExtensionId& extension_id) override;
void OnShowRequestsTogglePressed(const extensions::ExtensionId& extension_id,
bool is_on) override;
// TabStripModelObserver:
// Sometimes, menu can stay open when tab changes (e.g keyboard shortcuts) or
// due to the extension (e.g extension switching the active tab). Thus, we
// listen for tab changes to properly update the menu content.
void TabChangedAt(content::WebContents* contents,
int index,
TabChangeType change_type) override;
void OnTabStripModelChanged(
TabStripModel* tab_strip_model,
const TabStripModelChange& change,
const TabStripSelectionChange& selection) override;
// ToolbarActionsModel::Observer:
void OnToolbarActionAdded(
const ToolbarActionsModel::ActionId& action_id) override;
void OnToolbarActionRemoved(
const ToolbarActionsModel::ActionId& action_id) override;
void OnToolbarActionUpdated(
const ToolbarActionsModel::ActionId& action_id) override;
void OnToolbarModelInitialized() override;
void OnToolbarPinnedActionsChanged() override;
// PermissionsManager::Observer:
void OnUserPermissionsSettingsChanged(
const extensions::PermissionsManager::UserPermissionsSettings& settings)
override;
void OnShowAccessRequestsInToolbarChanged(
const extensions::ExtensionId& extension_id,
bool can_show_requests) override;
void OnHostAccessRequestAdded(const extensions::ExtensionId& extension_id,
int tab_id) override;
void OnHostAccessRequestUpdated(const extensions::ExtensionId& extension_id,
int tab_id) override;
void OnHostAccessRequestRemoved(const extensions::ExtensionId& extension_id,
int tab_id) override;
void OnHostAccessRequestsCleared(int tab_id) override;
void OnHostAccessRequestDismissedByUser(
const extensions::ExtensionId& extension_id,
const url::Origin& origin) override;
// Accessors used by tests:
// Returns the main page iff it's the `current_page_` one.
ExtensionsMenuMainPageView* GetMainPageViewForTesting();
// Returns the site permissions page iff it's the `current_page_` one.
ExtensionsMenuSitePermissionsPageView* GetSitePermissionsPageForTesting();
private:
// Switches the current page to `page`.
void SwitchToPage(std::unique_ptr<views::View> page);
// Updates current_page for the given `web_contents`.
void UpdatePage(content::WebContents* web_contents);
// Updates `main_page` for the given `web_contents`.
void UpdateMainPage(ExtensionsMenuMainPageView* main_page,
content::WebContents* web_contents);
// Updates `site_permissions_page` for the given `web_contents`.
void UpdateSitePermissionsPage(
ExtensionsMenuSitePermissionsPageView* site_permissions_page,
content::WebContents* web_contents);
// Populates menu items in `main_page`.
void PopulateMainPage(ExtensionsMenuMainPageView* main_page);
// Inserts a menu item for `extension_id` in `main_page` at `index`.
void InsertMenuItemMainPage(ExtensionsMenuMainPageView* main_page,
const extensions::ExtensionId& extension_id,
int index);
// Adds or updates a request access entry for `extension_id` in `main_page` at
// `index`.
void AddOrUpdateExtensionRequestingAccess(
ExtensionsMenuMainPageView* main_page,
const extensions::ExtensionId& extension_id,
int index,
content::WebContents* web_contents);
// Returns the currently active web contents.
content::WebContents* GetActiveWebContents() const;
const raw_ptr<Browser> browser_;
const raw_ptr<ExtensionsContainer> extensions_container_;
const raw_ptr<views::View> bubble_contents_;
// TODO(crbug.com/40260941) There are no guarantee this pointer is safe
// to be used. In practice its lifetime is probably always shorter than
// `this`. This has to be fixed.
const raw_ptr<views::BubbleDialogDelegate, DisableDanglingPtrDetection>
bubble_delegate_;
const raw_ptr<ToolbarActionsModel> toolbar_model_;
base::ScopedObservation<ToolbarActionsModel, ToolbarActionsModel::Observer>
toolbar_model_observation_{this};
base::ScopedObservation<extensions::PermissionsManager,
extensions::PermissionsManager::Observer>
permissions_manager_observation_{this};
// The current page visible in `bubble_contents_`.
views::ViewTracker current_page_;
};
#endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSIONS_MENU_VIEW_CONTROLLER_H_
|