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 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1655 | 1655 |
1656 // The last used printer and its settings. | 1656 // The last used printer and its settings. |
1657 const char kPrintPreviewStickySettings[] = | 1657 const char kPrintPreviewStickySettings[] = |
1658 "printing.print_preview_sticky_settings"; | 1658 "printing.print_preview_sticky_settings"; |
1659 | 1659 |
1660 // The list of BackgroundContents that should be loaded when the browser | 1660 // The list of BackgroundContents that should be loaded when the browser |
1661 // launches. | 1661 // launches. |
1662 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1662 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
1663 | 1663 |
1664 #if defined(OS_WIN) | 1664 #if defined(OS_WIN) |
1665 // The "major.minor" OS version for which the welcome page was last shown. | |
1666 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; | |
1667 | |
1665 // An int that stores how often we've shown the "Chrome is configured to | 1668 // An int that stores how often we've shown the "Chrome is configured to |
1666 // auto-launch" infobar. | 1669 // auto-launch" infobar. |
1667 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1670 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
1671 | |
1672 // Boolean that specifies whether or not showing the welcome page following an | |
1673 // OS upgrade is enabled. True by default. May be overridden by the | |
1674 // WelcomePageOnOSUpgradeEnabled policy setting or by master_preferences. | |
gab
2015/07/09 18:05:13
Technically it's not "overridden" by master_prefer
grt (UTC plus 2)
2015/07/10 15:43:25
SGTM, thanks.
| |
1675 const char kWelcomePageOnOSUpgradeEnabled[] = | |
1676 "browser.welcome_page_on_os_upgrade_enabled"; | |
1668 #endif | 1677 #endif |
1669 | 1678 |
1670 // String that lists supported HTTP authentication schemes. | 1679 // String that lists supported HTTP authentication schemes. |
1671 const char kAuthSchemes[] = "auth.schemes"; | 1680 const char kAuthSchemes[] = "auth.schemes"; |
1672 | 1681 |
1673 // Boolean that specifies whether to disable CNAME lookups when generating | 1682 // Boolean that specifies whether to disable CNAME lookups when generating |
1674 // Kerberos SPN. | 1683 // Kerberos SPN. |
1675 const char kDisableAuthNegotiateCnameLookup[] = | 1684 const char kDisableAuthNegotiateCnameLookup[] = |
1676 "auth.disable_negotiate_cname_lookup"; | 1685 "auth.disable_negotiate_cname_lookup"; |
1677 | 1686 |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2254 "supervised_users.whitelists"; | 2263 "supervised_users.whitelists"; |
2255 | 2264 |
2256 #if defined(ENABLE_EXTENSIONS) | 2265 #if defined(ENABLE_EXTENSIONS) |
2257 // Policy that indicates how to handle animated images. | 2266 // Policy that indicates how to handle animated images. |
2258 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2267 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2259 #endif | 2268 #endif |
2260 | 2269 |
2261 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2270 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2262 | 2271 |
2263 } // namespace prefs | 2272 } // namespace prefs |
OLD | NEW |