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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 extern const char kDistroImportHomePagePref[]; | 45 extern const char kDistroImportHomePagePref[]; |
46 // Boolean pref that triggers silent import of the default search engine. | 46 // Boolean pref that triggers silent import of the default search engine. |
47 extern const char kDistroImportSearchPref[]; | 47 extern const char kDistroImportSearchPref[]; |
48 // Integer. RLZ ping delay in seconds. | 48 // Integer. RLZ ping delay in seconds. |
49 extern const char kDistroPingDelay[]; | 49 extern const char kDistroPingDelay[]; |
50 // String of Chrome version for which the "set as default browser" infobar will | 50 // String of Chrome version for which the "set as default browser" infobar will |
51 // never be shown. | 51 // never be shown. |
52 extern const char kDistroSuppressDefaultBrowserPromptPref[]; | 52 extern const char kDistroSuppressDefaultBrowserPromptPref[]; |
53 // Boolean. Do not show first run bubble, even if it would otherwise be shown. | 53 // Boolean. Do not show first run bubble, even if it would otherwise be shown. |
54 extern const char kDistroSuppressFirstRunBubble[]; | 54 extern const char kDistroSuppressFirstRunBubble[]; |
| 55 // Boolean that specifies whether or not showing the welcome page following an |
| 56 // OS upgrade is enabled. True by default. May be overridden by the |
| 57 // WelcomePageOnOSUpgradeEnabled policy setting. |
| 58 extern const char kDistroWelcomePageOnOSUpgradeEnabled[]; |
55 // Boolean. Prevent creation of all shortcuts to chrome, including the | 59 // Boolean. Prevent creation of all shortcuts to chrome, including the |
56 // desktop, quick launch, taskbar and the start menu shortcuts. | 60 // desktop, quick launch, taskbar and the start menu shortcuts. |
57 extern const char kDoNotCreateAnyShortcuts[]; | 61 extern const char kDoNotCreateAnyShortcuts[]; |
58 // Boolean. Prevent creation of the Desktop shortcut on install (and later on | 62 // Boolean. Prevent creation of the Desktop shortcut on install (and later on |
59 // Active Setup for each user on a system-level install). | 63 // Active Setup for each user on a system-level install). |
60 extern const char kDoNotCreateDesktopShortcut[]; | 64 extern const char kDoNotCreateDesktopShortcut[]; |
61 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later | 65 // Boolean. Prevent creation of the Quick Launch shortcut on install (and later |
62 // on Active Setup for each user on a system-level install). | 66 // on Active Setup for each user on a system-level install). |
63 extern const char kDoNotCreateQuickLaunchShortcut[]; | 67 extern const char kDoNotCreateQuickLaunchShortcut[]; |
64 // Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on | 68 // Boolean. Prevent creation of the Taskbar (since Windows 7) shortcut on |
(...skipping 24 matching lines...) Expand all Loading... |
89 // Boolean. Install Chrome to system wise location. Cmd line override present. | 93 // Boolean. Install Chrome to system wise location. Cmd line override present. |
90 extern const char kSystemLevel[]; | 94 extern const char kSystemLevel[]; |
91 // Boolean. Run installer in verbose mode. Cmd line override present. | 95 // Boolean. Run installer in verbose mode. Cmd line override present. |
92 extern const char kVerboseLogging[]; | 96 extern const char kVerboseLogging[]; |
93 // Name of the block that contains the extensions on the master preferences. | 97 // Name of the block that contains the extensions on the master preferences. |
94 extern const char kExtensionsBlock[]; | 98 extern const char kExtensionsBlock[]; |
95 } // namespace master_preferences | 99 } // namespace master_preferences |
96 } // namespace installer | 100 } // namespace installer |
97 | 101 |
98 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ | 102 #endif // CHROME_INSTALLER_UTIL_MASTER_PREFERENCES_CONSTANTS_H_ |
OLD | NEW |