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