OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Defines all the command-line switches used by Chrome installer. | 5 // Defines all the command-line switches used by Chrome installer. |
6 | 6 |
7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
9 | 9 |
10 #include <stdint.h> | |
grt (UTC plus 2)
2015/12/18 21:02:50
both wchar_t and char (the two types used in this
bcwhite
2015/12/21 15:47:25
Odd. Not sure why that showed up. Done.
| |
11 | |
10 namespace installer { | 12 namespace installer { |
11 | 13 |
12 extern const wchar_t kChromeArchive[]; | 14 extern const wchar_t kChromeArchive[]; |
13 extern const wchar_t kChromeCompressedArchive[]; | 15 extern const wchar_t kChromeCompressedArchive[]; |
14 extern const wchar_t kVisualElements[]; | 16 extern const wchar_t kVisualElements[]; |
15 extern const wchar_t kVisualElementsManifest[]; | 17 extern const wchar_t kVisualElementsManifest[]; |
16 extern const wchar_t kWowHelperExe[]; | 18 extern const wchar_t kWowHelperExe[]; |
17 | 19 |
18 extern const wchar_t kInstallSourceDir[]; | 20 extern const wchar_t kInstallSourceDir[]; |
19 extern const wchar_t kInstallSourceChromeDir[]; | 21 extern const wchar_t kInstallSourceChromeDir[]; |
20 | 22 |
21 extern const wchar_t kMediaPlayerRegPath[]; | 23 extern const wchar_t kMediaPlayerRegPath[]; |
22 | 24 |
23 namespace switches { | 25 namespace switches { |
24 | 26 |
25 extern const char kDelay[]; | 27 extern const char kDelay[]; |
26 extern const char kSetDisplayVersionProduct[]; | 28 extern const char kSetDisplayVersionProduct[]; |
27 extern const char kSetDisplayVersionValue[]; | 29 extern const char kSetDisplayVersionValue[]; |
28 | 30 |
29 } // namespace switches | 31 } // namespace switches |
30 | 32 |
31 } // namespace installer | 33 } // namespace installer |
32 | 34 |
33 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 35 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
OLD | NEW |