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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/app_list_service_win.cc
diff --git a/chrome/browser/ui/app_list/app_list_service_win.cc b/chrome/browser/ui/app_list/app_list_service_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e8fb7b5f3d9413aa64ea20c77c948df3052bb475
--- /dev/null
+++ b/chrome/browser/ui/app_list/app_list_service_win.cc
@@ -0,0 +1,24 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/app_list/app_list_service_win.h"
+
+#include "grit/theme_resources.h"
+
+#if defined(GOOGLE_CHROME_BUILD)
+#include "chrome/installer/util/install_util.h"
+#endif
+
+namespace chrome {
+
+int GetAppListIconResourceId() {
+ int icon_id = IDR_APP_LIST;
+#if defined(GOOGLE_CHROME_BUILD)
+ if (InstallUtil::IsChromeSxSProcess())
+ icon_id = IDR_APP_LIST_SXS;
+#endif
+ return icon_id;
+}
+
+} // namespace chrome
« 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