blob: 86d4154165586aa04d59c4ac5661249305dd850e [file] [log] [blame]
grte29f8ab2016-11-15 22:26:301// Copyright 2016 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// Brand-specific types and constants for Google Chrome.
6
7#ifndef CHROME_INSTALL_STATIC_GOOGLE_CHROME_INSTALL_MODES_H_
8#define CHROME_INSTALL_STATIC_GOOGLE_CHROME_INSTALL_MODES_H_
9
10namespace install_static {
11
grte8cc5ba92017-04-03 14:50:1512// Note: This list of indices must be kept in sync with the brand-specific
13// resource strings in chrome/installer/util/prebuild/create_string_rc.
grte29f8ab2016-11-15 22:26:3014enum InstallConstantIndex {
15 STABLE_INDEX,
grt7df93362017-04-23 08:54:5316 BETA_INDEX,
17 DEV_INDEX,
grte29f8ab2016-11-15 22:26:3018 CANARY_INDEX,
19 NUM_INSTALL_MODES,
20};
21
22} // namespace install_static
23
24#endif // CHROME_INSTALL_STATIC_GOOGLE_CHROME_INSTALL_MODES_H_