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[]; | |
90 // Boolean. Support installing multiple products at once. | 87 // Boolean. Support installing multiple products at once. |
91 extern const char kMultiInstall[]; | 88 extern const char kMultiInstall[]; |
92 // Boolean. Show EULA dialog before install. | 89 // Boolean. Show EULA dialog before install. |
93 extern const char kRequireEula[]; | 90 extern const char kRequireEula[]; |
94 // Boolean. Indicates that the first-run 'set-as-default' dialog should not be | 91 // Boolean. Indicates that the first-run 'set-as-default' dialog should not be |
95 // shown. Relevant in Windows 8+ context only. If this is true, the standard | 92 // shown. Relevant in Windows 8+ context only. If this is true, the standard |
96 // 'set default browser' prompt on the butter-bar will appear during the first | 93 // 'set default browser' prompt on the butter-bar will appear during the first |
97 // run. | 94 // run. |
98 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; | 95 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; |
99 // Boolean. Install Chrome to system wise location. Cmd line override present. | 96 // Boolean. Install Chrome to system wise location. Cmd line override present. |
100 extern const char kSystemLevel[]; | 97 extern const char kSystemLevel[]; |
101 // Boolean. Run installer in verbose mode. Cmd line override present. | 98 // Boolean. Run installer in verbose mode. Cmd line override present. |
102 extern const char kVerboseLogging[]; | 99 extern const char kVerboseLogging[]; |
103 // Name of the block that contains the extensions on the master preferences. | 100 // Name of the block that contains the extensions on the master preferences. |
104 extern const char kExtensionsBlock[]; | 101 extern const char kExtensionsBlock[]; |
105 } // namespace master_preferences | 102 } // namespace master_preferences |
106 } // namespace installer | 103 } // namespace installer |
107 | 104 |
108 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 105 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |