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

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

Issue 215693004: Fixing icon ordering problem between browser and running windowed applications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 9 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/chrome_launcher_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
index 7dd041107b0d4baca8e89f43074dd030524da2d9..9cf51ae3ffadedf615618c7aafcdd49e43fb3b88 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
@@ -1881,9 +1881,9 @@ int ChromeLauncherController::FindInsertionPoint(bool is_app_list) {
ash::ShelfItemType type = model_->items()[i].type;
if (type == ash::TYPE_APP_SHORTCUT ||
((is_app_list || alternate) && type == ash::TYPE_APP_LIST) ||
- type == ash::TYPE_BROWSER_SHORTCUT ||
- type == ash::TYPE_WINDOWED_APP)
+ type == ash::TYPE_BROWSER_SHORTCUT) {
return i;
+ }
}
return 0;
}
« 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