| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // shown. Relevant in Windows 8+ context only. If this is true, the standard | 85 // shown. Relevant in Windows 8+ context only. If this is true, the standard |
| 86 // 'set default browser' prompt on the butter-bar will appear during the first | 86 // 'set default browser' prompt on the butter-bar will appear during the first |
| 87 // run. | 87 // run. |
| 88 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; | 88 extern const char kSuppressFirstRunDefaultBrowserPrompt[]; |
| 89 // Boolean. Install Chrome to system wise location. Cmd line override present. | 89 // Boolean. Install Chrome to system wise location. Cmd line override present. |
| 90 extern const char kSystemLevel[]; | 90 extern const char kSystemLevel[]; |
| 91 // Boolean. Run installer in verbose mode. Cmd line override present. | 91 // Boolean. Run installer in verbose mode. Cmd line override present. |
| 92 extern const char kVerboseLogging[]; | 92 extern const char kVerboseLogging[]; |
| 93 // Name of the block that contains the extensions on the master preferences. | 93 // Name of the block that contains the extensions on the master preferences. |
| 94 extern const char kExtensionsBlock[]; | 94 extern const char kExtensionsBlock[]; |
| 95 // Boolean. Allow Chrome to be downgraded to a previous version if true. |
| 96 extern const char kAllowDowngrade[]; |
| 97 |
| 95 } // namespace master_preferences | 98 } // namespace master_preferences |
| 96 } // namespace installer | 99 } // namespace installer |
| 97 | 100 |
| 98 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 101 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
| OLD | NEW |