| 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 1975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1986 "remote_access.host_talkgadget_prefix"; | 1986 "remote_access.host_talkgadget_prefix"; |
| 1987 | 1987 |
| 1988 // Boolean controlling whether curtaining is required when connecting to a host. | 1988 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1989 const char kRemoteAccessHostRequireCurtain[] = | 1989 const char kRemoteAccessHostRequireCurtain[] = |
| 1990 "remote_access.host_require_curtain"; | 1990 "remote_access.host_require_curtain"; |
| 1991 | 1991 |
| 1992 // Boolean controlling whether curtaining is required when connecting to a host. | 1992 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1993 const char kRemoteAccessHostAllowClientPairing[] = | 1993 const char kRemoteAccessHostAllowClientPairing[] = |
| 1994 "remote_access.host_allow_client_pairing"; | 1994 "remote_access.host_allow_client_pairing"; |
| 1995 | 1995 |
| 1996 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
| 1997 const char kRemoteAccessHostAllowGnubbyAuth[] = |
| 1998 "remote_access.host_allow_gnubby_auth"; |
| 1999 |
| 1996 // The last used printer and its settings. | 2000 // The last used printer and its settings. |
| 1997 const char kPrintPreviewStickySettings[] = | 2001 const char kPrintPreviewStickySettings[] = |
| 1998 "printing.print_preview_sticky_settings"; | 2002 "printing.print_preview_sticky_settings"; |
| 1999 // The root URL of the cloud print service. | 2003 // The root URL of the cloud print service. |
| 2000 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 2004 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
| 2001 | 2005 |
| 2002 // The URL to use to sign in to cloud print. | 2006 // The URL to use to sign in to cloud print. |
| 2003 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 2007 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
| 2004 | 2008 |
| 2005 // The last requested size of the dialog as it was closed. | 2009 // The last requested size of the dialog as it was closed. |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2691 | 2695 |
| 2692 // The number of seconds since epoch that the OS password was last changed. | 2696 // The number of seconds since epoch that the OS password was last changed. |
| 2693 const char kOsPasswordLastChanged[] = | 2697 const char kOsPasswordLastChanged[] = |
| 2694 "password_manager.os_password_last_changed"; | 2698 "password_manager.os_password_last_changed"; |
| 2695 #endif | 2699 #endif |
| 2696 | 2700 |
| 2697 // Whether DNS Quick Check is disabled in proxy resolution. | 2701 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2698 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2702 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2699 | 2703 |
| 2700 } // namespace prefs | 2704 } // namespace prefs |
| OLD | NEW |