Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc

Issue 614793003: Test IsSettingsBrowser in BrowserShortcutLauncherItemController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc b/chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc
index 24e5147e10c6a2c3d4149fd8959b61c93dc40a0f..28c475922d4259dd40005ff4f2d50b1d83112a20 100644
--- a/chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc
+++ b/chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.cc
@@ -39,6 +39,24 @@
#include "ui/gfx/image/image.h"
#include "ui/wm/core/window_animations.h"
+namespace {
+
+bool IsSettingsBrowser(Browser* browser) {
+ // Normally this test is sufficient. TODO(stevenjb): Replace this with a
+ // better mechanism (Settings WebUI or Browser type).
+ if (chrome::IsTrustedPopupWindowWithScheme(browser, content::kChromeUIScheme))
+ return true;
+ // If a settings window navigates away from a kChromeUIScheme (e.g. after a
+ // crash), the above may not be true, so also test against the known list
+ // of settings browsers (which will not be valid during chrome::Navigate
+ // which is why we still need the above test).
+ if (chrome::SettingsWindowManager::GetInstance()->IsSettingsBrowser(browser))
+ return true;
+ return false;
+}
+
+} // namespace
+
BrowserShortcutLauncherItemController::BrowserShortcutLauncherItemController(
ChromeLauncherController* launcher_controller)
: LauncherItemController(TYPE_SHORTCUT,
@@ -109,7 +127,7 @@ void BrowserShortcutLauncherItemController::SetShelfIDForBrowserWindowContents(
if (!browser ||
!launcher_controller()->IsBrowserFromActiveUser(browser) ||
browser->host_desktop_type() != chrome::HOST_DESKTOP_TYPE_ASH ||
- chrome::IsTrustedPopupWindowWithScheme(browser, content::kChromeUIScheme))
+ IsSettingsBrowser(browser))
return;
ash::SetShelfIDForWindow(
@@ -349,8 +367,8 @@ bool BrowserShortcutLauncherItemController::IsBrowserRepresentedInBrowserList(
web_app::GetExtensionIdFromApplicationName(browser->app_name())) > 0)
return false;
- // Stand-alone chrome:// windows (e.g. settings) have their own icon.
- if (chrome::IsTrustedPopupWindowWithScheme(browser, content::kChromeUIScheme))
+ // Settings browsers have their own icon.
+ if (IsSettingsBrowser(browser))
return false;
// Tabbed browser and other popup windows are all represented.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698