| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 const char kInstantEnabledTime[] = "instant.enabled_time"; | 223 const char kInstantEnabledTime[] = "instant.enabled_time"; |
| 224 | 224 |
| 225 // Used to maintain instant promo keys. See PromoCounter for details of subkeys | 225 // Used to maintain instant promo keys. See PromoCounter for details of subkeys |
| 226 // that are used. | 226 // that are used. |
| 227 const char kInstantPromo[] = "instant.promo"; | 227 const char kInstantPromo[] = "instant.promo"; |
| 228 | 228 |
| 229 #if defined(USE_NSS) || defined(USE_OPENSSL) | 229 #if defined(USE_NSS) || defined(USE_OPENSSL) |
| 230 // Prefs for SSLConfigServicePref. Currently, these are only present on | 230 // Prefs for SSLConfigServicePref. Currently, these are only present on |
| 231 // and used by NSS/OpenSSL using OSes. | 231 // and used by NSS/OpenSSL using OSes. |
| 232 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 232 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 233 const char kSSL2Enabled[] = "ssl.ssl2.enabled"; | |
| 234 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 233 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 235 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 234 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 236 #endif | 235 #endif |
| 237 | 236 |
| 238 #if defined(OS_CHROMEOS) | 237 #if defined(OS_CHROMEOS) |
| 239 // A boolean pref set to true if TapToClick is being done in browser. | 238 // A boolean pref set to true if TapToClick is being done in browser. |
| 240 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 239 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
| 241 | 240 |
| 242 // A integer pref for the touchpad sensitivity. | 241 // A integer pref for the touchpad sensitivity. |
| 243 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; | 242 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 const char kManagedDefaultPluginsSetting[] = | 1123 const char kManagedDefaultPluginsSetting[] = |
| 1125 "profile.managed_default_content_settings.plugins"; | 1124 "profile.managed_default_content_settings.plugins"; |
| 1126 const char kManagedDefaultPopupsSetting[] = | 1125 const char kManagedDefaultPopupsSetting[] = |
| 1127 "profile.managed_default_content_settings.popups"; | 1126 "profile.managed_default_content_settings.popups"; |
| 1128 | 1127 |
| 1129 // Dictionary for storing the set of known background pages (keys are extension | 1128 // Dictionary for storing the set of known background pages (keys are extension |
| 1130 // IDs of background page owners, value is a boolean that is true if the user | 1129 // IDs of background page owners, value is a boolean that is true if the user |
| 1131 // needs to acknowledge this page. | 1130 // needs to acknowledge this page. |
| 1132 const char kKnownBackgroundPages[] = "background_pages.known"; | 1131 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1133 } // namespace prefs | 1132 } // namespace prefs |
| OLD | NEW |