forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrome_icon_resources_win.h
50 lines (36 loc) · 1.26 KB
/
chrome_icon_resources_win.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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_