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

Unified Diff: ash/launcher/launcher_navigator.cc

Issue 12288012: Showing launcher items for windowed v1 apps - pinned or not. Also - don't show windowed v1 apps in … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit test Created 7 years, 10 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
Index: ash/launcher/launcher_navigator.cc
diff --git a/ash/launcher/launcher_navigator.cc b/ash/launcher/launcher_navigator.cc
index 3ae142461b915995f20bcb5a0351e9aead33a426..f1745e0002b53a7b644dff9c834886376c32bbb8 100644
--- a/ash/launcher/launcher_navigator.cc
+++ b/ash/launcher/launcher_navigator.cc
@@ -15,7 +15,8 @@ namespace {
bool ShouldSkip(ash::LauncherItemType type) {
return type == ash::TYPE_APP_LIST ||
type == ash::TYPE_BROWSER_SHORTCUT ||
- type == ash::TYPE_APP_SHORTCUT;
+ type == ash::TYPE_APP_SHORTCUT ||
+ type == ash::TYPE_WINDOWED_APP;
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698