| 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 1961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1972 "remote_access.host_talkgadget_prefix"; | 1972 "remote_access.host_talkgadget_prefix"; |
| 1973 | 1973 |
| 1974 // Boolean controlling whether curtaining is required when connecting to a host. | 1974 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1975 const char kRemoteAccessHostRequireCurtain[] = | 1975 const char kRemoteAccessHostRequireCurtain[] = |
| 1976 "remote_access.host_require_curtain"; | 1976 "remote_access.host_require_curtain"; |
| 1977 | 1977 |
| 1978 // Boolean controlling whether curtaining is required when connecting to a host. | 1978 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1979 const char kRemoteAccessHostAllowClientPairing[] = | 1979 const char kRemoteAccessHostAllowClientPairing[] = |
| 1980 "remote_access.host_allow_client_pairing"; | 1980 "remote_access.host_allow_client_pairing"; |
| 1981 | 1981 |
| 1982 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
| 1983 const char kRemoteAccessAllowGnubbyAuth[] = |
| 1984 "remote_access.host_allow_gnubby_auth"; |
| 1985 |
| 1982 // The last used printer and its settings. | 1986 // The last used printer and its settings. |
| 1983 const char kPrintPreviewStickySettings[] = | 1987 const char kPrintPreviewStickySettings[] = |
| 1984 "printing.print_preview_sticky_settings"; | 1988 "printing.print_preview_sticky_settings"; |
| 1985 // The root URL of the cloud print service. | 1989 // The root URL of the cloud print service. |
| 1986 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1990 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
| 1987 | 1991 |
| 1988 // The URL to use to sign in to cloud print. | 1992 // The URL to use to sign in to cloud print. |
| 1989 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1993 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
| 1990 | 1994 |
| 1991 // The last requested size of the dialog as it was closed. | 1995 // The last requested size of the dialog as it was closed. |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2668 | 2672 |
| 2669 // The number of seconds since epoch that the OS password was last changed. | 2673 // The number of seconds since epoch that the OS password was last changed. |
| 2670 const char kOsPasswordLastChanged[] = | 2674 const char kOsPasswordLastChanged[] = |
| 2671 "password_manager.os_password_last_changed"; | 2675 "password_manager.os_password_last_changed"; |
| 2672 #endif | 2676 #endif |
| 2673 | 2677 |
| 2674 // Whether DNS Quick Check is disabled in proxy resolution. | 2678 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2675 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2679 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2676 | 2680 |
| 2677 } // namespace prefs | 2681 } // namespace prefs |
| OLD | NEW |