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

Side by Side Diff: chrome/common/chrome_icon_resources_win.h

Issue 2802713002: Enable side-by-side beta and dev channels. (Closed)
Patch Set: Created 3 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ 5 #ifndef CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
6 #define CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ 6 #define CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
7 7
8 namespace icon_resources { 8 namespace icon_resources {
9 9
10 // This file contains the indices of icon resources in chrome_exe.rc. 10 // This file contains the indices of icon resources in chrome_exe.rc.
(...skipping 12 matching lines...) Expand all
23 kSxSApplicationIndex = 4, 23 kSxSApplicationIndex = 4,
24 24
25 // The Chrome App Launcher icon. 25 // The Chrome App Launcher icon.
26 kAppLauncherIndex = 5, 26 kAppLauncherIndex = 5,
27 27
28 // The Chrome App Launcher Canary icon. 28 // The Chrome App Launcher Canary icon.
29 kSxSAppLauncherIndex = 6, 29 kSxSAppLauncherIndex = 6,
30 30
31 // The Chrome incognito icon. 31 // The Chrome incognito icon.
32 kIncognitoIndex = 7, 32 kIncognitoIndex = 7,
33
34 // The Chrome Dev application icon.
35 kDevApplicationIndex = 8,
36
37 // The Chrome Beta application icon.
38 kBetaApplicationIndex = 9,
robertshield 2017/04/05 21:29:37 part of me want to re-use the legacy indices which
grt (UTC plus 2) 2017/04/20 13:53:04 huh. i can't find any record of them being used, e
33 #else // defined(GOOGLE_CHROME_BUILD) 39 #else // defined(GOOGLE_CHROME_BUILD)
34 // The Chromium App Launcher icon. 40 // The Chromium App Launcher icon.
35 kAppLauncherIndex = 1, 41 kAppLauncherIndex = 1,
36 42
37 // The Chromium incognito icon. 43 // The Chromium incognito icon.
38 kIncognitoIndex = 2, 44 kIncognitoIndex = 2,
39 #endif // defined(GOOGLE_CHROME_BUILD) 45 #endif // defined(GOOGLE_CHROME_BUILD)
40 }; 46 };
41 47
42 } // namespace icon_resources 48 } // namespace icon_resources
43 49
44 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ 50 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698