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

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..4793895a289f3d262cc89ef8e054558f1b75e53e 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
@@ -1881,8 +1881,7 @@ 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)
flackr 2014/03/27 23:21:12 nit: This should have braces.
Mr4D (OOO till 08-26) 2014/03/27 23:24:51 Done.
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