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

Side by Side Diff: chrome/browser/ui/app_list/app_list_service_win.cc

Issue 13947002: Update App Launcher icons, splitting for Chromium, Chrome, Canary. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 7 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/app_list/app_list_service_win.h"
6
7 #include "grit/theme_resources.h"
8
9 #if defined(GOOGLE_CHROME_BUILD)
10 #include "chrome/installer/util/install_util.h"
11 #endif
12
13 namespace chrome {
14
15 int GetAppListIconResourceId() {
16 int icon_id = IDR_APP_LIST;
17 #if defined(GOOGLE_CHROME_BUILD)
18 if (InstallUtil::IsChromeSxSProcess())
19 icon_id = IDR_APP_LIST_SXS;
20 #endif
21 return icon_id;
22 }
23
24 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service_win.h ('k') | chrome/browser/ui/extensions/app_metro_infobar_delegate_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698