setup_constants.h revision 5821806d5e7f356e8fa4b058a389a808ea183019
1// Copyright (c) 2012 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// Defines all the command-line switches used by Chrome installer.
6
7#ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
8#define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
9
10namespace installer {
11
12extern const wchar_t kChromeArchive[];
13extern const wchar_t kChromeCompressedArchive[];
14extern const wchar_t kVisualElements[];
15extern const wchar_t kVisualElementsManifest[];
16extern const wchar_t kWowHelperExe[];
17
18extern const wchar_t kInstallSourceDir[];
19extern const wchar_t kInstallSourceChromeDir[];
20
21extern const wchar_t kMediaPlayerRegPath[];
22
23}  // namespace installer
24
25#endif  // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__
26