| 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 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 // auto-launch" infobar. | 1605 // auto-launch" infobar. |
| 1606 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | 1606 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; |
| 1607 | 1607 |
| 1608 // Boolean that specifies whether or not showing the welcome page following an | 1608 // Boolean that specifies whether or not showing the welcome page following an |
| 1609 // OS upgrade is enabled. True by default. May be set by master_preferences or | 1609 // OS upgrade is enabled. True by default. May be set by master_preferences or |
| 1610 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. | 1610 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. |
| 1611 const char kWelcomePageOnOSUpgradeEnabled[] = | 1611 const char kWelcomePageOnOSUpgradeEnabled[] = |
| 1612 "browser.welcome_page_on_os_upgrade_enabled"; | 1612 "browser.welcome_page_on_os_upgrade_enabled"; |
| 1613 #endif | 1613 #endif |
| 1614 | 1614 |
| 1615 // String that lists supported HTTP authentication schemes. | |
| 1616 const char kAuthSchemes[] = "auth.schemes"; | |
| 1617 | |
| 1618 // Boolean that specifies whether to disable CNAME lookups when generating | |
| 1619 // Kerberos SPN. | |
| 1620 const char kDisableAuthNegotiateCnameLookup[] = | |
| 1621 "auth.disable_negotiate_cname_lookup"; | |
| 1622 | |
| 1623 // Boolean that specifies whether to include the port in a generated Kerberos | |
| 1624 // SPN. | |
| 1625 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; | |
| 1626 | |
| 1627 // Whitelist containing servers for which Integrated Authentication is enabled. | |
| 1628 const char kAuthServerWhitelist[] = "auth.server_whitelist"; | |
| 1629 | |
| 1630 // Whitelist containing servers Chrome is allowed to do Kerberos delegation | |
| 1631 // with. | |
| 1632 const char kAuthNegotiateDelegateWhitelist[] = | |
| 1633 "auth.negotiate_delegate_whitelist"; | |
| 1634 | |
| 1635 // String that specifies the name of a custom GSSAPI library to load. | |
| 1636 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; | |
| 1637 | |
| 1638 // String that specifies the Android account type to use for Negotiate | |
| 1639 // authentication. | |
| 1640 const char kAuthAndroidNegotiateAccountType[] = | |
| 1641 "auth.android_negotiate_account_type"; | |
| 1642 | |
| 1643 // Boolean that specifies whether to allow basic auth prompting on cross- | 1615 // Boolean that specifies whether to allow basic auth prompting on cross- |
| 1644 // domain sub-content requests. | 1616 // domain sub-content requests. |
| 1645 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; | 1617 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; |
| 1646 | 1618 |
| 1647 // Boolean that specifies whether the built-in asynchronous DNS client is used. | 1619 // Boolean that specifies whether the built-in asynchronous DNS client is used. |
| 1648 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; | 1620 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; |
| 1649 | 1621 |
| 1650 // A pref holding the value of the policy used to explicitly allow or deny | 1622 // A pref holding the value of the policy used to explicitly allow or deny |
| 1651 // access to audio capture devices. When enabled or not set, the user is | 1623 // access to audio capture devices. When enabled or not set, the user is |
| 1652 // prompted for device access. When disabled, access to audio capture devices | 1624 // prompted for device access. When disabled, access to audio capture devices |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 // Policy that indicates how to handle animated images. | 2160 // Policy that indicates how to handle animated images. |
| 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2161 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2190 #endif | 2162 #endif |
| 2191 | 2163 |
| 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2164 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2193 | 2165 |
| 2194 const char kAllowDinosaurEasterEgg[] = | 2166 const char kAllowDinosaurEasterEgg[] = |
| 2195 "allow_dinosaur_easter_egg"; | 2167 "allow_dinosaur_easter_egg"; |
| 2196 | 2168 |
| 2197 } // namespace prefs | 2169 } // namespace prefs |
| OLD | NEW |