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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1682 | 1682 |
1683 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | 1683 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
1684 const char kRemoteAccessHostAllowGnubbyAuth[] = | 1684 const char kRemoteAccessHostAllowGnubbyAuth[] = |
1685 "remote_access.host_allow_gnubby_auth"; | 1685 "remote_access.host_allow_gnubby_auth"; |
1686 | 1686 |
1687 // Boolean that indicates whether the Chromoting host should allow connections | 1687 // Boolean that indicates whether the Chromoting host should allow connections |
1688 // using relay servers. | 1688 // using relay servers. |
1689 const char kRemoteAccessHostAllowRelayedConnection[] = | 1689 const char kRemoteAccessHostAllowRelayedConnection[] = |
1690 "remote_access.host_allow_relayed_connection"; | 1690 "remote_access.host_allow_relayed_connection"; |
1691 | 1691 |
| 1692 // Boolean controlling if local host username has to match host owner username. |
| 1693 const char kRemoteAccessHostMatchUsername[] = |
| 1694 "remote_access.host_match_username"; |
| 1695 |
| 1696 // String. |
| 1697 const char kRemoteAccessHostTokenUrl[] = "remote_access.host_token_url"; |
| 1698 |
| 1699 // String. |
| 1700 const char kRemoteAccessHostTokenValidationUrl[] = |
| 1701 "remote_access.host_token_validation_url"; |
| 1702 |
| 1703 // String. |
| 1704 const char kRemoteAccessHostTokenValidationCertificateIssuer[] = |
| 1705 "remote_access.host_token_validation_certificate_issuer"; |
| 1706 |
| 1707 // String containing JSON with policy overrides for Debug builds of Chromoting. |
| 1708 const char kRemoteAccessHostDebugOverridePolicies[] = |
| 1709 "remote_access.host_debug_override_policies"; |
| 1710 |
1692 // String containing the UDP port range that the Chromoting host should used | 1711 // String containing the UDP port range that the Chromoting host should used |
1693 // when connecting to clients. The port range should be in the form: | 1712 // when connecting to clients. The port range should be in the form: |
1694 // <min_port>-<max_port>. E.g. 12400-12409. | 1713 // <min_port>-<max_port>. E.g. 12400-12409. |
1695 const char kRemoteAccessHostUdpPortRange[] = | 1714 const char kRemoteAccessHostUdpPortRange[] = |
1696 "remote_access.host_udp_port_range"; | 1715 "remote_access.host_udp_port_range"; |
1697 | 1716 |
1698 // The last used printer and its settings. | 1717 // The last used printer and its settings. |
1699 const char kPrintPreviewStickySettings[] = | 1718 const char kPrintPreviewStickySettings[] = |
1700 "printing.print_preview_sticky_settings"; | 1719 "printing.print_preview_sticky_settings"; |
1701 | 1720 |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2297 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2279 | 2298 |
2280 // Last user's interaction with the password bubble. | 2299 // Last user's interaction with the password bubble. |
2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2300 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2282 | 2301 |
2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2302 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2284 const char kRecoveryComponentNeedsElevation[] = | 2303 const char kRecoveryComponentNeedsElevation[] = |
2285 "recovery_component.needs_elevation"; | 2304 "recovery_component.needs_elevation"; |
2286 | 2305 |
2287 } // namespace prefs | 2306 } // namespace prefs |
OLD | NEW |