| 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 1865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1876 "remote_access.host_require_curtain"; | 1876 "remote_access.host_require_curtain"; |
| 1877 | 1877 |
| 1878 // Boolean controlling whether curtaining is required when connecting to a host. | 1878 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1879 const char kRemoteAccessHostAllowClientPairing[] = | 1879 const char kRemoteAccessHostAllowClientPairing[] = |
| 1880 "remote_access.host_allow_client_pairing"; | 1880 "remote_access.host_allow_client_pairing"; |
| 1881 | 1881 |
| 1882 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | 1882 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
| 1883 const char kRemoteAccessHostAllowGnubbyAuth[] = | 1883 const char kRemoteAccessHostAllowGnubbyAuth[] = |
| 1884 "remote_access.host_allow_gnubby_auth"; | 1884 "remote_access.host_allow_gnubby_auth"; |
| 1885 | 1885 |
| 1886 // Boolean that indicates whether the Chromoting host should allow connections | |
| 1887 // using relay servers. | |
| 1888 const char kRemoteAccessHostAllowRelayedConnection[] = | |
| 1889 "remote_access.host_allow_relayed_connection"; | |
| 1890 | |
| 1891 // String containing the UDP port range that the Chromoting host should used | |
| 1892 // when connecting to clients. The port range should be in the form: | |
| 1893 // <min_port>-<max_port>. E.g. 12400-12409. | |
| 1894 const char kRemoteAccessHostUdpPortRange[] = | |
| 1895 "remote_access.host_udp_port_range"; | |
| 1896 | |
| 1897 // The last used printer and its settings. | 1886 // The last used printer and its settings. |
| 1898 const char kPrintPreviewStickySettings[] = | 1887 const char kPrintPreviewStickySettings[] = |
| 1899 "printing.print_preview_sticky_settings"; | 1888 "printing.print_preview_sticky_settings"; |
| 1900 | 1889 |
| 1901 // The last requested size of the dialog as it was closed. | 1890 // The last requested size of the dialog as it was closed. |
| 1902 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1891 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
| 1903 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1892 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
| 1904 const char kCloudPrintSigninDialogWidth[] = | 1893 const char kCloudPrintSigninDialogWidth[] = |
| 1905 "cloud_print.signin_dialog_size.width"; | 1894 "cloud_print.signin_dialog_size.width"; |
| 1906 const char kCloudPrintSigninDialogHeight[] = | 1895 const char kCloudPrintSigninDialogHeight[] = |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2533 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2522 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2534 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2523 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2535 // title or an empty string if the bookmark node was removed. | 2524 // title or an empty string if the bookmark node was removed. |
| 2536 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2525 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2537 #endif | 2526 #endif |
| 2538 | 2527 |
| 2539 // Whether DNS Quick Check is disabled in proxy resolution. | 2528 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2540 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2529 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2541 | 2530 |
| 2542 } // namespace prefs | 2531 } // namespace prefs |
| OLD | NEW |