| 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 10 matching lines...) Expand all Loading... |
| 21 // startup. The default (if not provided) is |false|. | 21 // startup. The default (if not provided) is |false|. |
| 22 extern const char kAutoLaunchChrome[]; | 22 extern const char kAutoLaunchChrome[]; |
| 23 // Boolean. This is to be a Chrome install. (When using MultiInstall) | 23 // Boolean. This is to be a Chrome install. (When using MultiInstall) |
| 24 extern const char kChrome[]; | 24 extern const char kChrome[]; |
| 25 // Boolean. This is to be a Chrome App Host install. | 25 // Boolean. This is to be a Chrome App Host install. |
| 26 extern const char kChromeAppHostDeprecated[]; // TODO(huangs): Remove by M27. | 26 extern const char kChromeAppHostDeprecated[]; // TODO(huangs): Remove by M27. |
| 27 // Boolean. This is to be a Chrome App Launcher install. | 27 // Boolean. This is to be a Chrome App Launcher install. |
| 28 extern const char kChromeAppLauncher[]; | 28 extern const char kChromeAppLauncher[]; |
| 29 // Boolean. This is to be a Chrome Frame install. | 29 // Boolean. This is to be a Chrome Frame install. |
| 30 extern const char kChromeFrame[]; | 30 extern const char kChromeFrame[]; |
| 31 // Boolean. Chrome Frame is to be installed in ready-mode. | |
| 32 extern const char kChromeFrameReadyMode[]; | |
| 33 // Integer. Icon index from chrome.exe to use for shortcuts. | 31 // Integer. Icon index from chrome.exe to use for shortcuts. |
| 34 extern const char kChromeShortcutIconIndex[]; | 32 extern const char kChromeShortcutIconIndex[]; |
| 35 // Boolean. This is a legacy preference and should no longer be used; it is | 33 // Boolean. This is a legacy preference and should no longer be used; it is |
| 36 // kept around so that old master_preferences which specify | 34 // kept around so that old master_preferences which specify |
| 37 // "create_all_shortcuts":false still enforce the new | 35 // "create_all_shortcuts":false still enforce the new |
| 38 // "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to | 36 // "do_not_create_(desktop|quick_launch)_shortcut" preferences. Setting this to |
| 39 // true no longer has any impact. | 37 // true no longer has any impact. |
| 40 extern const char kCreateAllShortcuts[]; | 38 extern const char kCreateAllShortcuts[]; |
| 41 // Boolean pref that disables all logging. | 39 // Boolean pref that disables all logging. |
| 42 extern const char kDisableLogging[]; | 40 extern const char kDisableLogging[]; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // Boolean. Install Chrome to system wise location. Cmd line override present. | 95 // Boolean. Install Chrome to system wise location. Cmd line override present. |
| 98 extern const char kSystemLevel[]; | 96 extern const char kSystemLevel[]; |
| 99 // Boolean. Run installer in verbose mode. Cmd line override present. | 97 // Boolean. Run installer in verbose mode. Cmd line override present. |
| 100 extern const char kVerboseLogging[]; | 98 extern const char kVerboseLogging[]; |
| 101 // Name of the block that contains the extensions on the master preferences. | 99 // Name of the block that contains the extensions on the master preferences. |
| 102 extern const char kExtensionsBlock[]; | 100 extern const char kExtensionsBlock[]; |
| 103 } // namespace master_preferences | 101 } // namespace master_preferences |
| 104 } // namespace installer | 102 } // namespace installer |
| 105 | 103 |
| 106 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 104 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
| OLD | NEW |