| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/ui/ash/launcher/extension_launcher_context_menu.h" |
| |
| #include <utility> |
| |
| #include "ash/public/cpp/app_menu_constants.h" |
| #include "base/bind.h" |
| #include "chrome/browser/extensions/context_menu_matcher.h" |
| #include "chrome/browser/extensions/extension_util.h" |
| #include "chrome/browser/extensions/launch_util.h" |
| #include "chrome/browser/prefs/incognito_mode_prefs.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/ui/app_list/extension_app_utils.h" |
| #include "chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.h" |
| #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" |
| #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_util.h" |
| #include "chrome/browser/ui/browser_commands.h" |
| #include "chrome/browser/web_applications/system_web_app_manager.h" |
| #include "chrome/browser/web_applications/web_app_provider.h" |
| #include "chrome/common/extensions/extension_constants.h" |
| #include "chrome/grit/chromium_strings.h" |
| #include "chrome/grit/generated_resources.h" |
| #include "content/public/common/context_menu_params.h" |
| #include "extensions/browser/extension_prefs.h" |
| #include "ui/display/screen.h" |
| #include "ui/gfx/paint_vector_icon.h" |
| |
| namespace { |
| |
| // A helper used to filter which menu items added by the extension are shown. |
| bool MenuItemHasLauncherContext(const extensions::MenuItem* item) { |
| return item->contexts().Contains(extensions::MenuItem::LAUNCHER); |
| } |
| |
| // Temporarily sets the display for new windows. Only use this when it's |
| // guaranteed messages won't be received from ash to update the display. |
| // For example, it's OK to use temporarily at function scope, but don't |
| // heap-allocate one and hang on to it. |
| class ScopedDisplayIdForNewWindows { |
| public: |
| explicit ScopedDisplayIdForNewWindows(int64_t display_id) |
| : old_display_id_(display_id) { |
| display::Screen::GetScreen()->SetDisplayForNewWindows(display_id); |
| } |
| |
| ~ScopedDisplayIdForNewWindows() { |
| display::Screen::GetScreen()->SetDisplayForNewWindows(old_display_id_); |
| } |
| |
| private: |
| const int64_t old_display_id_; |
| |
| DISALLOW_COPY_AND_ASSIGN(ScopedDisplayIdForNewWindows); |
| }; |
| |
| } // namespace |
| |
| ExtensionLauncherContextMenu::ExtensionLauncherContextMenu( |
| ChromeLauncherController* controller, |
| const ash::ShelfItem* item, |
| int64_t display_id) |
| : LauncherContextMenu(controller, item, display_id) {} |
| |
| ExtensionLauncherContextMenu::~ExtensionLauncherContextMenu() = default; |
| |
| void ExtensionLauncherContextMenu::GetMenuModel(GetMenuModelCallback callback) { |
| auto menu_model = std::make_unique<ui::SimpleMenuModel>(this); |
| BuildMenu(menu_model.get()); |
| std::move(callback).Run(std::move(menu_model)); |
| } |
| |
| bool ExtensionLauncherContextMenu::IsCommandIdChecked(int command_id) const { |
| switch (command_id) { |
| case ash::LAUNCH_TYPE_PINNED_TAB: |
| return GetLaunchType() == extensions::LAUNCH_TYPE_PINNED; |
| case ash::LAUNCH_TYPE_REGULAR_TAB: |
| return GetLaunchType() == extensions::LAUNCH_TYPE_REGULAR; |
| case ash::LAUNCH_TYPE_WINDOW: |
| return GetLaunchType() == extensions::LAUNCH_TYPE_WINDOW; |
| case ash::LAUNCH_TYPE_FULLSCREEN: |
| return GetLaunchType() == extensions::LAUNCH_TYPE_FULLSCREEN; |
| default: |
| if (command_id < ash::COMMAND_ID_COUNT) |
| return LauncherContextMenu::IsCommandIdChecked(command_id); |
| return (extension_items_ && |
| extension_items_->IsCommandIdChecked(command_id)); |
| } |
| } |
| |
| bool ExtensionLauncherContextMenu::IsCommandIdEnabled(int command_id) const { |
| switch (command_id) { |
| case ash::UNINSTALL: |
| return controller()->UninstallAllowed(item().id.app_id); |
| case ash::MENU_NEW_WINDOW: |
| // "Normal" windows are not allowed when incognito is enforced. |
| return IncognitoModePrefs::GetAvailability( |
| controller()->profile()->GetPrefs()) != |
| IncognitoModePrefs::FORCED; |
| case ash::MENU_NEW_INCOGNITO_WINDOW: |
| // Incognito windows are not allowed when incognito is disabled. |
| return IncognitoModePrefs::GetAvailability( |
| controller()->profile()->GetPrefs()) != |
| IncognitoModePrefs::DISABLED; |
| default: |
| if (command_id < ash::COMMAND_ID_COUNT) |
| return LauncherContextMenu::IsCommandIdEnabled(command_id); |
| return (extension_items_ && |
| extension_items_->IsCommandIdEnabled(command_id)); |
| } |
| } |
| |
| void ExtensionLauncherContextMenu::ExecuteCommand(int command_id, |
| int event_flags) { |
| if (ExecuteCommonCommand(command_id, event_flags)) |
| return; |
| |
| // Place new windows on the same display as the context menu. |
| ScopedDisplayIdForNewWindows scoped_display(display_id()); |
| |
| switch (static_cast<ash::CommandId>(command_id)) { |
| case ash::SHOW_APP_INFO: |
| controller()->DoShowAppInfoFlow(controller()->profile(), |
| item().id.app_id); |
| break; |
| case ash::LAUNCH_TYPE_PINNED_TAB: |
| SetLaunchType(extensions::LAUNCH_TYPE_PINNED); |
| break; |
| case ash::LAUNCH_TYPE_REGULAR_TAB: |
| SetLaunchType(extensions::LAUNCH_TYPE_REGULAR); |
| break; |
| case ash::LAUNCH_TYPE_WINDOW: { |
| // Hosted apps can only toggle between LAUNCH_WINDOW and LAUNCH_REGULAR. |
| extensions::LaunchType launch_type = |
| GetLaunchType() == extensions::LAUNCH_TYPE_WINDOW |
| ? extensions::LAUNCH_TYPE_REGULAR |
| : extensions::LAUNCH_TYPE_WINDOW; |
| SetLaunchType(launch_type); |
| break; |
| } |
| case ash::LAUNCH_TYPE_FULLSCREEN: |
| SetLaunchType(extensions::LAUNCH_TYPE_FULLSCREEN); |
| break; |
| case ash::MENU_NEW_WINDOW: |
| chrome::NewEmptyWindow(controller()->profile()); |
| break; |
| case ash::MENU_NEW_INCOGNITO_WINDOW: |
| chrome::NewEmptyWindow(controller()->profile()->GetOffTheRecordProfile()); |
| break; |
| default: |
| if (extension_items_) { |
| extension_items_->ExecuteCommand(command_id, nullptr, nullptr, |
| content::ContextMenuParams()); |
| } |
| } |
| } |
| |
| void ExtensionLauncherContextMenu::CreateOpenNewSubmenu( |
| ui::SimpleMenuModel* menu_model) { |
| // Touchable extension context menus use an actionable submenu for |
| // MENU_OPEN_NEW. |
| const int kGroupId = 1; |
| open_new_submenu_model_ = std::make_unique<ui::SimpleMenuModel>(this); |
| open_new_submenu_model_->AddRadioItemWithStringId( |
| ash::LAUNCH_TYPE_REGULAR_TAB, IDS_APP_LIST_CONTEXT_MENU_NEW_TAB, |
| kGroupId); |
| open_new_submenu_model_->AddRadioItemWithStringId( |
| ash::LAUNCH_TYPE_WINDOW, IDS_APP_LIST_CONTEXT_MENU_NEW_WINDOW, kGroupId); |
| menu_model->AddActionableSubmenuWithStringIdAndIcon( |
| ash::MENU_OPEN_NEW, GetLaunchTypeStringId(), |
| open_new_submenu_model_.get(), |
| GetCommandIdVectorIcon(ash::MENU_OPEN_NEW, GetLaunchTypeStringId())); |
| } |
| |
| void ExtensionLauncherContextMenu::BuildMenu(ui::SimpleMenuModel* menu_model) { |
| Profile* profile = controller()->profile(); |
| const std::string app_id = item().id.app_id; |
| |
| extension_items_ = std::make_unique<extensions::ContextMenuMatcher>( |
| profile, this, menu_model, |
| base::BindRepeating(MenuItemHasLauncherContext)); |
| // V1 apps can be started from the menu - but V2 apps and system web apps |
| // should not. |
| bool is_system_web_app = web_app::WebAppProvider::Get(profile) |
| ->system_web_app_manager() |
| .IsSystemWebApp(app_id); |
| const bool is_platform_app = controller()->IsPlatformApp(item().id); |
| |
| if (item().type == ash::TYPE_PINNED_APP || item().type == ash::TYPE_APP) { |
| if (!is_platform_app && !is_system_web_app) |
| CreateOpenNewSubmenu(menu_model); |
| AddPinMenu(menu_model); |
| |
| if (controller()->IsOpen(item().id)) { |
| AddContextMenuOption(menu_model, ash::MENU_CLOSE, |
| IDS_LAUNCHER_CONTEXT_MENU_CLOSE); |
| } |
| } else if (item().type == ash::TYPE_BROWSER_SHORTCUT) { |
| AddContextMenuOption(menu_model, ash::MENU_NEW_WINDOW, |
| IDS_APP_LIST_NEW_WINDOW); |
| if (!profile->IsGuestSession()) { |
| AddContextMenuOption(menu_model, ash::MENU_NEW_INCOGNITO_WINDOW, |
| IDS_APP_LIST_NEW_INCOGNITO_WINDOW); |
| } |
| if (!BrowserShortcutLauncherItemController::IsListOfActiveBrowserEmpty() || |
| item().type == ash::TYPE_DIALOG || controller()->IsOpen(item().id)) { |
| AddContextMenuOption(menu_model, ash::MENU_CLOSE, |
| IDS_LAUNCHER_CONTEXT_MENU_CLOSE); |
| } |
| } |
| if (app_id != extension_misc::kChromeAppId) { |
| AddContextMenuOption(menu_model, ash::UNINSTALL, |
| is_platform_app ? IDS_APP_LIST_UNINSTALL_ITEM |
| : IDS_APP_LIST_EXTENSIONS_UNINSTALL); |
| } |
| |
| if (controller()->CanDoShowAppInfoFlow() && !is_system_web_app) { |
| AddContextMenuOption(menu_model, ash::SHOW_APP_INFO, |
| IDS_APP_CONTEXT_MENU_SHOW_INFO); |
| } |
| |
| if (item().type == ash::TYPE_PINNED_APP || item().type == ash::TYPE_APP) { |
| const extensions::MenuItem::ExtensionKey app_key(app_id); |
| if (!app_key.empty()) { |
| int index = 0; |
| extension_items_->AppendExtensionItems(app_key, base::string16(), &index, |
| false); // is_action_menu |
| app_list::AddMenuItemIconsForSystemApps( |
| app_id, menu_model, menu_model->GetItemCount() - index, index); |
| } |
| } |
| } |
| |
| extensions::LaunchType ExtensionLauncherContextMenu::GetLaunchType() const { |
| const extensions::Extension* extension = |
| GetExtensionForAppID(item().id.app_id, controller()->profile()); |
| |
| // An extension can be unloaded/updated/unavailable at any time. |
| if (!extension) |
| return extensions::LAUNCH_TYPE_DEFAULT; |
| |
| return extensions::GetLaunchType( |
| extensions::ExtensionPrefs::Get(controller()->profile()), extension); |
| } |
| |
| void ExtensionLauncherContextMenu::SetLaunchType(extensions::LaunchType type) { |
| extensions::SetLaunchType(controller()->profile(), item().id.app_id, type); |
| } |
| |
| int ExtensionLauncherContextMenu::GetLaunchTypeStringId() const { |
| return (GetLaunchType() == extensions::LAUNCH_TYPE_PINNED || |
| GetLaunchType() == extensions::LAUNCH_TYPE_REGULAR) |
| ? IDS_APP_LIST_CONTEXT_MENU_NEW_TAB |
| : IDS_APP_LIST_CONTEXT_MENU_NEW_WINDOW; |
| } |