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 | 1958 |
1959 // String containing the domain name of the Chromoting Directory. | 1959 // String containing the domain name of the Chromoting Directory. |
1960 // Used by Chromoting host and client. | 1960 // Used by Chromoting host and client. |
1961 const char kRemoteAccessHostTalkGadgetPrefix[] = | 1961 const char kRemoteAccessHostTalkGadgetPrefix[] = |
1962 "remote_access.host_talkgadget_prefix"; | 1962 "remote_access.host_talkgadget_prefix"; |
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 kRemoteAccessHostRequireCurtain[] = | 1965 const char kRemoteAccessHostRequireCurtain[] = |
1966 "remote_access.host_require_curtain"; | 1966 "remote_access.host_require_curtain"; |
1967 | 1967 |
| 1968 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1969 const char kRemoteAccessHostAllowClientPairing[] = |
| 1970 "remote_access.host_allow_client_pairing"; |
| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2504 | 2508 |
2505 // How often the bubble has been shown. | 2509 // How often the bubble has been shown. |
2506 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2510 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2507 | 2511 |
2508 // A string pref for storing the salt used to compute the pepper device ID. | 2512 // A string pref for storing the salt used to compute the pepper device ID. |
2509 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2513 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2510 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2514 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2511 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2515 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2512 | 2516 |
2513 } // namespace prefs | 2517 } // namespace prefs |
OLD | NEW |