| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // Boolean pref that triggers silent import of the default browser history. | 50 // Boolean pref that triggers silent import of the default browser history. |
| 51 extern const char kDistroImportHistoryPref[]; | 51 extern const char kDistroImportHistoryPref[]; |
| 52 // Boolean pref that triggers silent import of the default browser homepage. | 52 // Boolean pref that triggers silent import of the default browser homepage. |
| 53 extern const char kDistroImportHomePagePref[]; | 53 extern const char kDistroImportHomePagePref[]; |
| 54 // Boolean pref that triggers silent import of the default search engine. | 54 // Boolean pref that triggers silent import of the default search engine. |
| 55 extern const char kDistroImportSearchPref[]; | 55 extern const char kDistroImportSearchPref[]; |
| 56 // Integer. RLZ ping delay in seconds. | 56 // Integer. RLZ ping delay in seconds. |
| 57 extern const char kDistroPingDelay[]; | 57 extern const char kDistroPingDelay[]; |
| 58 // Boolean. Do not show first run bubble, even if it would otherwise be shown. | 58 // Boolean. Do not show first run bubble, even if it would otherwise be shown. |
| 59 extern const char kDistroSuppressFirstRunBubble[]; | 59 extern const char kDistroSuppressFirstRunBubble[]; |
| 60 // Boolean. Prevent creation of all shortcuts to chrome, including the |
| 61 // desktop, quick launch, taskbar and the start menu shortcuts. |
| 62 extern const char kDoNotCreateAnyShortcuts[]; |
| 60 // Boolean. Prevent creation of the Desktop shortcut on install (and later on | 63 // Boolean. Prevent creation of the Desktop shortcut on install (and later on |
| 61 // Active Setup for each user on a system-level install). | 64 // Active Setup for each user on a system-level install). |
| 62 extern const char kDoNotCreateDesktopShortcut[]; | 65 extern const char kDoNotCreateDesktopShortcut[]; |
| 63 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later | 66 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later |
| 64 // on Active Setup for each user on a system-level install). | 67 // on Active Setup for each user on a system-level install). |
| 65 extern const char kDoNotCreateQuickLaunchShortcut[]; | 68 extern const char kDoNotCreateQuickLaunchShortcut[]; |
| 69 // Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on |
| 70 // install (and later on Active Setup for each user on a system-level install). |
| 71 extern const char kDoNotCreateTaskbarShortcut[]; |
| 66 // Boolean. Do not launch Chrome after first install. Cmd line override present. | 72 // Boolean. Do not launch Chrome after first install. Cmd line override present. |
| 67 extern const char kDoNotLaunchChrome[]; | 73 extern const char kDoNotLaunchChrome[]; |
| 68 // Boolean. Do not register with Google Update to have Chrome launched after | 74 // Boolean. Do not register with Google Update to have Chrome launched after |
| 69 // install. Cmd line override present. | 75 // install. Cmd line override present. |
| 70 extern const char kDoNotRegisterForUpdateLaunch[]; | 76 extern const char kDoNotRegisterForUpdateLaunch[]; |
| 71 // String. Specifies the file path to write logging info to. | 77 // String. Specifies the file path to write logging info to. |
| 72 extern const char kLogFile[]; | 78 extern const char kLogFile[]; |
| 73 // Boolean. Register Chrome as default browser. Cmd line override present. | 79 // Boolean. Register Chrome as default browser. Cmd line override present. |
| 74 extern const char kMakeChromeDefault[]; | 80 extern const char kMakeChromeDefault[]; |
| 75 // Boolean. Register Chrome as default browser for the current user. | 81 // Boolean. Register Chrome as default browser for the current user. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 88 // Boolean. Install Chrome to system wise location. Cmd line override present. | 94 // Boolean. Install Chrome to system wise location. Cmd line override present. |
| 89 extern const char kSystemLevel[]; | 95 extern const char kSystemLevel[]; |
| 90 // Boolean. Run installer in verbose mode. Cmd line override present. | 96 // Boolean. Run installer in verbose mode. Cmd line override present. |
| 91 extern const char kVerboseLogging[]; | 97 extern const char kVerboseLogging[]; |
| 92 // Name of the block that contains the extensions on the master preferences. | 98 // Name of the block that contains the extensions on the master preferences. |
| 93 extern const char kExtensionsBlock[]; | 99 extern const char kExtensionsBlock[]; |
| 94 } // namespace master_preferences | 100 } // namespace master_preferences |
| 95 } // namespace installer | 101 } // namespace installer |
| 96 | 102 |
| 97 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 103 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
| OLD | NEW |