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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1651 | 1651 |
1652 // The last used printer and its settings. | 1652 // The last used printer and its settings. |
1653 const char kPrintPreviewStickySettings[] = | 1653 const char kPrintPreviewStickySettings[] = |
1654 "printing.print_preview_sticky_settings"; | 1654 "printing.print_preview_sticky_settings"; |
1655 | 1655 |
1656 // The list of BackgroundContents that should be loaded when the browser | 1656 // The list of BackgroundContents that should be loaded when the browser |
1657 // launches. | 1657 // launches. |
1658 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1658 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
1659 | 1659 |
1660 #if defined(OS_WIN) | 1660 #if defined(OS_WIN) |
| 1661 // The "major.minor" OS version for which the welcome page was last shown. |
| 1662 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; |
| 1663 |
1661 // An int that stores how often we've shown the "Chrome is configured to | 1664 // An int that stores how often we've shown the "Chrome is configured to |
1662 // auto-launch" infobar. | 1665 // auto-launch" infobar. |
1663 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1666 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1667 |
| 1668 // Boolean that specifies whether or not showing the welcome page following an |
| 1669 // OS upgrade is enabled. True by default. May be set by master_preferences or |
| 1670 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. |
| 1671 const char kWelcomePageOnOSUpgradeEnabled[] = |
| 1672 "browser.welcome_page_on_os_upgrade_enabled"; |
1664 #endif | 1673 #endif |
1665 | 1674 |
1666 // String that lists supported HTTP authentication schemes. | 1675 // String that lists supported HTTP authentication schemes. |
1667 const char kAuthSchemes[] = "auth.schemes"; | 1676 const char kAuthSchemes[] = "auth.schemes"; |
1668 | 1677 |
1669 // Boolean that specifies whether to disable CNAME lookups when generating | 1678 // Boolean that specifies whether to disable CNAME lookups when generating |
1670 // Kerberos SPN. | 1679 // Kerberos SPN. |
1671 const char kDisableAuthNegotiateCnameLookup[] = | 1680 const char kDisableAuthNegotiateCnameLookup[] = |
1672 "auth.disable_negotiate_cname_lookup"; | 1681 "auth.disable_negotiate_cname_lookup"; |
1673 | 1682 |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2255 "supervised_users.whitelists"; | 2264 "supervised_users.whitelists"; |
2256 | 2265 |
2257 #if defined(ENABLE_EXTENSIONS) | 2266 #if defined(ENABLE_EXTENSIONS) |
2258 // Policy that indicates how to handle animated images. | 2267 // Policy that indicates how to handle animated images. |
2259 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2268 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2260 #endif | 2269 #endif |
2261 | 2270 |
2262 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2271 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2263 | 2272 |
2264 } // namespace prefs | 2273 } // namespace prefs |
OLD | NEW |