| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 // that are used. | 226 // that are used. |
| 227 const char kInstantPromo[] = "instant.promo"; | 227 const char kInstantPromo[] = "instant.promo"; |
| 228 | 228 |
| 229 // Type of instant. This is one of the enums defined in InstantController::TYPE. | 229 // Type of instant. This is one of the enums defined in InstantController::TYPE. |
| 230 const char kInstantType[] = "instant.type"; | 230 const char kInstantType[] = "instant.type"; |
| 231 | 231 |
| 232 #if defined(USE_NSS) || defined(USE_OPENSSL) | 232 #if defined(USE_NSS) || defined(USE_OPENSSL) |
| 233 // Prefs for SSLConfigServicePref. Currently, these are only present on | 233 // Prefs for SSLConfigServicePref. Currently, these are only present on |
| 234 // and used by NSS/OpenSSL using OSes. | 234 // and used by NSS/OpenSSL using OSes. |
| 235 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 235 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 236 const char kSSL2Enabled[] = "ssl.ssl2.enabled"; | |
| 237 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 236 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 238 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 237 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 239 #endif | 238 #endif |
| 240 | 239 |
| 241 #if defined(OS_CHROMEOS) | 240 #if defined(OS_CHROMEOS) |
| 242 // A boolean pref set to true if TapToClick is being done in browser. | 241 // A boolean pref set to true if TapToClick is being done in browser. |
| 243 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 242 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
| 244 | 243 |
| 245 // A integer pref for the touchpad sensitivity. | 244 // A integer pref for the touchpad sensitivity. |
| 246 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; | 245 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; |
| (...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 const char kManagedDefaultPluginsSetting[] = | 1126 const char kManagedDefaultPluginsSetting[] = |
| 1128 "profile.managed_default_content_settings.plugins"; | 1127 "profile.managed_default_content_settings.plugins"; |
| 1129 const char kManagedDefaultPopupsSetting[] = | 1128 const char kManagedDefaultPopupsSetting[] = |
| 1130 "profile.managed_default_content_settings.popups"; | 1129 "profile.managed_default_content_settings.popups"; |
| 1131 | 1130 |
| 1132 // Dictionary for storing the set of known background pages (keys are extension | 1131 // Dictionary for storing the set of known background pages (keys are extension |
| 1133 // IDs of background page owners, value is a boolean that is true if the user | 1132 // IDs of background page owners, value is a boolean that is true if the user |
| 1134 // needs to acknowledge this page. | 1133 // needs to acknowledge this page. |
| 1135 const char kKnownBackgroundPages[] = "background_pages.known"; | 1134 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1136 } // namespace prefs | 1135 } // namespace prefs |
| OLD | NEW |