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 1947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1958 "remote_access.host_talkgadget_prefix"; | 1958 "remote_access.host_talkgadget_prefix"; |
1959 | 1959 |
1960 // Boolean controlling whether curtaining is required when connecting to a host. | 1960 // Boolean controlling whether curtaining is required when connecting to a host. |
1961 const char kRemoteAccessHostRequireCurtain[] = | 1961 const char kRemoteAccessHostRequireCurtain[] = |
1962 "remote_access.host_require_curtain"; | 1962 "remote_access.host_require_curtain"; |
1963 | 1963 |
1964 // Boolean controlling whether curtaining is required when connecting to a host. | 1964 // Boolean controlling whether curtaining is required when connecting to a host. |
1965 const char kRemoteAccessHostAllowClientPairing[] = | 1965 const char kRemoteAccessHostAllowClientPairing[] = |
1966 "remote_access.host_allow_client_pairing"; | 1966 "remote_access.host_allow_client_pairing"; |
1967 | 1967 |
| 1968 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
| 1969 const char kRemoteAccessAllowGnubbyAuth[] = |
| 1970 "remote_access.host_allow_gnubby_auth"; |
| 1971 |
1968 // The last used printer and its settings. | 1972 // The last used printer and its settings. |
1969 const char kPrintPreviewStickySettings[] = | 1973 const char kPrintPreviewStickySettings[] = |
1970 "printing.print_preview_sticky_settings"; | 1974 "printing.print_preview_sticky_settings"; |
1971 // The root URL of the cloud print service. | 1975 // The root URL of the cloud print service. |
1972 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1976 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1973 | 1977 |
1974 // The URL to use to sign in to cloud print. | 1978 // The URL to use to sign in to cloud print. |
1975 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1979 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1976 | 1980 |
1977 // The last requested size of the dialog as it was closed. | 1981 // The last requested size of the dialog as it was closed. |
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2647 | 2651 |
2648 // The number of seconds since epoch that the OS password was last changed. | 2652 // The number of seconds since epoch that the OS password was last changed. |
2649 const char kOsPasswordLastChanged[] = | 2653 const char kOsPasswordLastChanged[] = |
2650 "password_manager.os_password_last_changed"; | 2654 "password_manager.os_password_last_changed"; |
2651 #endif | 2655 #endif |
2652 | 2656 |
2653 // Whether DNS Quick Check is disabled in proxy resolution. | 2657 // Whether DNS Quick Check is disabled in proxy resolution. |
2654 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2658 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2655 | 2659 |
2656 } // namespace prefs | 2660 } // namespace prefs |
OLD | NEW |