| OLD | NEW |
| 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 Loading... |
| 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, | |
| 39 #else // defined(GOOGLE_CHROME_BUILD) | 33 #else // defined(GOOGLE_CHROME_BUILD) |
| 40 // The Chromium App Launcher icon. | 34 // The Chromium App Launcher icon. |
| 41 kAppLauncherIndex = 1, | 35 kAppLauncherIndex = 1, |
| 42 | 36 |
| 43 // The Chromium incognito icon. | 37 // The Chromium incognito icon. |
| 44 kIncognitoIndex = 2, | 38 kIncognitoIndex = 2, |
| 45 #endif // defined(GOOGLE_CHROME_BUILD) | 39 #endif // defined(GOOGLE_CHROME_BUILD) |
| 46 }; | 40 }; |
| 47 | 41 |
| 48 } // namespace icon_resources | 42 } // namespace icon_resources |
| 49 | 43 |
| 50 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ | 44 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ |
| OLD | NEW |