summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/chrome_icon_resources_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/chrome_icon_resources_win.h')
-rw-r--r--chromium/chrome/common/chrome_icon_resources_win.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/chromium/chrome/common/chrome_icon_resources_win.h b/chromium/chrome/common/chrome_icon_resources_win.h
new file mode 100644
index 00000000000..9400c0b27ae
--- /dev/null
+++ b/chromium/chrome/common/chrome_icon_resources_win.h
@@ -0,0 +1,50 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
+#define CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
+
+namespace icon_resources {
+
+// This file contains the indices of icon resources in chrome_exe.rc.
+
+enum {
+ // The main application icon is always index 0.
+ kApplicationIndex = 0,
+
+#if defined(GOOGLE_CHROME_BUILD)
+ // Legacy indices that are no longer used.
+ kApplication2Index = 1,
+ kApplication3Index = 2,
+ kApplication4Index = 3,
+
+ // The Chrome Canary application icon.
+ kSxSApplicationIndex = 4,
+
+ // The Chrome App Launcher icon.
+ kAppLauncherIndex = 5,
+
+ // The Chrome App Launcher Canary icon.
+ kSxSAppLauncherIndex = 6,
+
+ // The Chrome incognito icon.
+ kIncognitoIndex = 7,
+
+ // The Chrome Dev application icon.
+ kDevApplicationIndex = 8,
+
+ // The Chrome Beta application icon.
+ kBetaApplicationIndex = 9,
+#else // defined(GOOGLE_CHROME_BUILD)
+ // The Chromium App Launcher icon.
+ kAppLauncherIndex = 1,
+
+ // The Chromium incognito icon.
+ kIncognitoIndex = 2,
+#endif // defined(GOOGLE_CHROME_BUILD)
+};
+
+} // namespace icon_resources
+
+#endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_