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 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1913 "remote_access.host_require_curtain"; | 1913 "remote_access.host_require_curtain"; |
1914 | 1914 |
1915 // Boolean controlling whether curtaining is required when connecting to a host. | 1915 // Boolean controlling whether curtaining is required when connecting to a host. |
1916 const char kRemoteAccessHostAllowClientPairing[] = | 1916 const char kRemoteAccessHostAllowClientPairing[] = |
1917 "remote_access.host_allow_client_pairing"; | 1917 "remote_access.host_allow_client_pairing"; |
1918 | 1918 |
1919 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | 1919 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
1920 const char kRemoteAccessHostAllowGnubbyAuth[] = | 1920 const char kRemoteAccessHostAllowGnubbyAuth[] = |
1921 "remote_access.host_allow_gnubby_auth"; | 1921 "remote_access.host_allow_gnubby_auth"; |
1922 | 1922 |
| 1923 // Boolean that indicates whether the Chromoting host should allow connections |
| 1924 // using relay servers. |
| 1925 const char kRemoteAccessHostAllowRelayedConnection[] = |
| 1926 "remote_access.host_allow_relayed_connection"; |
| 1927 |
| 1928 // String containing the UDP port range that the Chromoting host should used |
| 1929 // when connecting to clients. The port range should be in the form: |
| 1930 // <min_port>-<max_port>. E.g. 12400-12409. |
| 1931 const char kRemoteAccessHostUdpPortRange[] = |
| 1932 "remote_access.host_udp_port_range"; |
| 1933 |
1923 // The last used printer and its settings. | 1934 // The last used printer and its settings. |
1924 const char kPrintPreviewStickySettings[] = | 1935 const char kPrintPreviewStickySettings[] = |
1925 "printing.print_preview_sticky_settings"; | 1936 "printing.print_preview_sticky_settings"; |
1926 // The root URL of the cloud print service. | 1937 // The root URL of the cloud print service. |
1927 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1938 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1928 | 1939 |
1929 // The URL to use to sign in to cloud print. | 1940 // The URL to use to sign in to cloud print. |
1930 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1941 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1931 | 1942 |
1932 // The last requested size of the dialog as it was closed. | 1943 // The last requested size of the dialog as it was closed. |
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2601 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2612 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2602 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2613 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2603 // title or an empty string if the bookmark node was removed. | 2614 // title or an empty string if the bookmark node was removed. |
2604 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2615 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2605 #endif | 2616 #endif |
2606 | 2617 |
2607 // Whether DNS Quick Check is disabled in proxy resolution. | 2618 // Whether DNS Quick Check is disabled in proxy resolution. |
2608 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2619 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2609 | 2620 |
2610 } // namespace prefs | 2621 } // namespace prefs |
OLD | NEW |