diff options
author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-01 04:59:15 +0000 |
---|---|---|
committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-01 04:59:15 +0000 |
commit | 0801843b4c4ba5fcd740be8b49ba53e1d9400850 (patch) | |
tree | 97e3ac4cc0fa6eb486a97fd14c8e79d48e7d9b6c /ash/shell | |
parent | 1b86ef93546edc264dd3286742f151d7370165a2 (diff) | |
download | chromium_src-0801843b4c4ba5fcd740be8b49ba53e1d9400850.zip chromium_src-0801843b4c4ba5fcd740be8b49ba53e1d9400850.tar.gz chromium_src-0801843b4c4ba5fcd740be8b49ba53e1d9400850.tar.bz2 |
[win] Remove shadow from tab overlay in app launcher.
BUG=175621
TBR=sky for ash example app list change
Review URL: https://chromiumcodereview.appspot.com/12388040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell')
-rw-r--r-- | ash/shell/app_list.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc index ce09d97..6b69b87 100644 --- a/ash/shell/app_list.cc +++ b/ash/shell/app_list.cc @@ -43,7 +43,7 @@ class WindowTypeLauncherItem : public app_list::AppListItemModel { }; explicit WindowTypeLauncherItem(Type type) : type_(type) { - SetIcon(GetIcon(type)); + SetIcon(GetIcon(type), false); SetTitle(GetTitle(type)); } |