Home | History | Annotate | Download | only in common
      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 #ifndef CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
      6 #define CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
      7 
      8 namespace icon_resources {
      9 
     10 // This file contains the indices of icon resources in chrome_exe.rc.
     11 
     12 // The Chrome/Chromium application icon.
     13 extern const int kApplicationIndex;
     14 #if defined(GOOGLE_CHROME_BUILD)
     15 extern const int kApplication2Index;
     16 extern const int kApplication3Index;
     17 extern const int kApplication4Index;
     18 #endif
     19 
     20 // The Chrome Canary application icon.
     21 extern const int kSxSApplicationIndex;
     22 
     23 // The Chrome/Chromium App Launcher icon.
     24 extern const int kAppLauncherIndex;
     25 
     26 // The Chrome App Launcher Canary icon.
     27 extern const int kSxSAppLauncherIndex;
     28 
     29 // The icon for installing a Chrome packaged app.
     30 extern const int kInstallPackagedAppIndex;
     31 
     32 }  // namespace icon_resources
     33 
     34 #endif  // CHROME_COMMON_CHROME_ICON_RESOURCES_WIN_H_
     35