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 3 // found in the LICENSE file. 4 5 #include "chrome/common/chrome_icon_resources_win.h" 6 7 namespace icon_resources { 8 9 // The indices here must be consistent with the order of icons in chrome_exe.rc. 10 11 #if defined(GOOGLE_CHROME_BUILD) 12 const int kApplicationIndex = 0; 13 const int kApplication2Index = 1; 14 const int kApplication3Index = 2; 15 const int kApplication4Index = 3; 16 const int kSxSApplicationIndex = 4; 17 const int kAppLauncherIndex = 5; 18 const int kSxSAppLauncherIndex = 6; 19 const int kInstallPackagedAppIndex = 7; 20 21 #else 22 const int kApplicationIndex = 0; 23 const int kAppLauncherIndex = 1; 24 const int kInstallPackagedAppIndex = 2; 25 26 // For google_chrome_sxs_distribution.cc to compile in a dev build only. 27 const int kSxSApplicationIndex = -1; 28 const int kSxSAppLauncherIndex = -1; 29 #endif 30 31 } // namespace icon_resources 32