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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1701 | 1701 |
1702 // Dictionary that maps Geolocation network provider server URLs to | 1702 // Dictionary that maps Geolocation network provider server URLs to |
1703 // corresponding access token. | 1703 // corresponding access token. |
1704 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 1704 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
1705 | 1705 |
1706 // Boolean that indicates whether to allow firewall traversal while trying to | 1706 // Boolean that indicates whether to allow firewall traversal while trying to |
1707 // establish the initial connection from the client or host. | 1707 // establish the initial connection from the client or host. |
1708 const char kRemoteAccessHostFirewallTraversal[] = | 1708 const char kRemoteAccessHostFirewallTraversal[] = |
1709 "remote_access.host_firewall_traversal"; | 1709 "remote_access.host_firewall_traversal"; |
1710 | 1710 |
| 1711 // Boolean controlling whether 2-factor auth should be required when connecting |
| 1712 // to a host (instead of a PIN). |
| 1713 const char kRemoteAccessHostRequireTwoFactor[] = |
| 1714 "remote_access.host_require_two_factor"; |
| 1715 |
| 1716 // String containing the domain name that hosts must belong to. If blank, then |
| 1717 // hosts can belong to any domain. |
| 1718 const char kRemoteAccessHostDomain[] = "remote_access.host_domain"; |
| 1719 |
| 1720 // String containing the domain name of the Chromoting Directory. |
| 1721 // Used by Chromoting host and client. |
| 1722 const char kRemoteAccessHostTalkGadgetPrefix[] = |
| 1723 "remote_access.host_talkgadget_prefix"; |
1711 | 1724 |
1712 // The last used printer and its settings. | 1725 // The last used printer and its settings. |
1713 const char kPrintPreviewStickySettings[] = | 1726 const char kPrintPreviewStickySettings[] = |
1714 "printing.print_preview_sticky_settings"; | 1727 "printing.print_preview_sticky_settings"; |
1715 // The root URL of the cloud print service. | 1728 // The root URL of the cloud print service. |
1716 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1729 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1717 | 1730 |
1718 // The URL to use to sign in to cloud print. | 1731 // The URL to use to sign in to cloud print. |
1719 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1732 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1720 | 1733 |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 const char kNetworkProfileLastWarningTime[] = | 2034 const char kNetworkProfileLastWarningTime[] = |
2022 "network_profile.last_warning_time"; | 2035 "network_profile.last_warning_time"; |
2023 | 2036 |
2024 #if defined(OS_MACOSX) | 2037 #if defined(OS_MACOSX) |
2025 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2038 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
2026 const char kMacLeopardObsoleteInfobarLastShown[] = | 2039 const char kMacLeopardObsoleteInfobarLastShown[] = |
2027 "mac_105_obsolete_infobar_last_shown"; | 2040 "mac_105_obsolete_infobar_last_shown"; |
2028 #endif // defined(OS_MACOSX) | 2041 #endif // defined(OS_MACOSX) |
2029 | 2042 |
2030 } // namespace prefs | 2043 } // namespace prefs |
OLD | NEW |