| 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. |
| 11 | 11 |
| 12 // The Chrome/Chromium application icon. | 12 // The Chrome/Chromium application icon. |
| 13 extern const int kApplicationIndex; | 13 extern const int kApplicationIndex; |
| 14 #if defined(GOOGLE_CHROME_BUILD) | 14 #if defined(GOOGLE_CHROME_BUILD) |
| 15 extern const int kApplication2Index; | 15 extern const int kApplication2Index; |
| 16 extern const int kApplication3Index; | 16 extern const int kApplication3Index; |
| 17 extern const int kApplication4Index; | 17 extern const int kApplication4Index; |
| 18 #endif | 18 #endif |
| 19 | 19 |
| 20 // The Chrome Canary application icon. | 20 // The Chrome Canary application icon. |
| 21 extern const int kSxSApplicationIndex; | 21 extern const int kSxSApplicationIndex; |
| 22 | 22 |
| 23 // The Chrome/Chromium App Launcher icon. | 23 // The Chrome/Chromium App Launcher icon. |
| 24 extern const int kAppLauncherIndex; | 24 extern const int kAppLauncherIndex; |
| 25 | 25 |
| 26 // The Chrome/Chromium Incognito icon. |
| 27 extern const int kIncognitoIndex; |
| 28 |
| 26 // The Chrome App Launcher Canary icon. | 29 // The Chrome App Launcher Canary icon. |
| 27 extern const int kSxSAppLauncherIndex; | 30 extern const int kSxSAppLauncherIndex; |
| 28 | 31 |
| 29 } // namespace icon_resources | 32 } // namespace icon_resources |
| 30 | 33 |
| 31 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ | 34 #endif // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_ |
| OLD | NEW |