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 // This file contains the constants used to process master_preferences files | 5 // This file contains the constants used to process master_preferences files |
6 // used by setup and first run. | 6 // used by setup and first run. |
7 | 7 |
8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 9 #define CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
10 | 10 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 // install. Cmd line override present. | 77 // install. Cmd line override present. |
78 extern const char kDoNotRegisterForUpdateLaunch[]; | 78 extern const char kDoNotRegisterForUpdateLaunch[]; |
79 // String. Specifies the file path to write logging info to. | 79 // String. Specifies the file path to write logging info to. |
80 extern const char kLogFile[]; | 80 extern const char kLogFile[]; |
81 // Boolean. Register Chrome as default browser. Cmd line override present. | 81 // Boolean. Register Chrome as default browser. Cmd line override present. |
82 extern const char kMakeChromeDefault[]; | 82 extern const char kMakeChromeDefault[]; |
83 // Boolean. Register Chrome as default browser for the current user. | 83 // Boolean. Register Chrome as default browser for the current user. |
84 extern const char kMakeChromeDefaultForUser[]; | 84 extern const char kMakeChromeDefaultForUser[]; |
85 // Boolean. Expect to be run by an MSI installer. Cmd line override present. | 85 // Boolean. Expect to be run by an MSI installer. Cmd line override present. |
86 extern const char kMsi[]; | 86 extern const char kMsi[]; |
| 87 // String. The MSI Product ID under which the MSI stores its information. This |
| 88 // is used to update the DisplayVersion to match Chrome's version number. |
| 89 extern const char kMsiProductId[]; |
87 // Boolean. Support installing multiple products at once. | 90 // Boolean. Support installing multiple products at once. |
88 extern const char kMultiInstall[]; | 91 extern const char kMultiInstall[]; |
89 // Boolean. Show EULA dialog before install. | 92 // Boolean. Show EULA dialog before install. |
90 extern const char kRequireEula[]; | 93 extern const char kRequireEula[]; |
91 // Boolean. Indicates that the first-run 'set-as-default' dialog should not be | 94 // Boolean. Indicates that the first-run 'set-as-default' dialog should not be |
92 // shown. Relevant in Windows 8+ context only. If this is true, the standard | 95 // shown. Relevant in Windows 8+ context only. If this is true, the standard |
93 // 'set default browser' prompt on the butter-bar will appear during the first | 96 // 'set default browser' prompt on the butter-bar will appear during the first |
94 // run. | 97 // run. |
95 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; | 98 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; |
96 // Boolean. Install Chrome to system wise location. Cmd line override present. | 99 // Boolean. Install Chrome to system wise location. Cmd line override present. |
97 extern const char kSystemLevel[]; | 100 extern const char kSystemLevel[]; |
98 // Boolean. Run installer in verbose mode. Cmd line override present. | 101 // Boolean. Run installer in verbose mode. Cmd line override present. |
99 extern const char kVerboseLogging[]; | 102 extern const char kVerboseLogging[]; |
100 // Name of the block that contains the extensions on the master preferences. | 103 // Name of the block that contains the extensions on the master preferences. |
101 extern const char kExtensionsBlock[]; | 104 extern const char kExtensionsBlock[]; |
102 } // namespace master_preferences | 105 } // namespace master_preferences |
103 } // namespace installer | 106 } // namespace installer |
104 | 107 |
105 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 108 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |