| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 #if defined(USE_NSS) || defined(USE_OPENSSL) | 261 #if defined(USE_NSS) || defined(USE_OPENSSL) |
| 262 // Prefs for SSLConfigServicePref. Currently, these are only present on | 262 // Prefs for SSLConfigServicePref. Currently, these are only present on |
| 263 // and used by NSS/OpenSSL using OSes. | 263 // and used by NSS/OpenSSL using OSes. |
| 264 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 264 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
| 265 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 265 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
| 266 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 266 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
| 267 #endif | 267 #endif |
| 268 | 268 |
| 269 #if defined(OS_CHROMEOS) | 269 #if defined(OS_CHROMEOS) |
| 270 // An integer pref to initially mute volume if 1. |
| 271 const char kAudioMute[] = "settings.audio.mute"; |
| 272 |
| 273 // A double pref to set initial volume. |
| 274 const char kAudioVolume[] = "settings.audio.volume"; |
| 275 |
| 270 // A boolean pref set to true if TapToClick is being done in browser. | 276 // A boolean pref set to true if TapToClick is being done in browser. |
| 271 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 277 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
| 272 | 278 |
| 273 // A integer pref for the touchpad sensitivity. | 279 // A integer pref for the touchpad sensitivity. |
| 274 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; | 280 const char kTouchpadSensitivity[] = "settings.touchpad.sensitivity2"; |
| 275 | 281 |
| 276 // A string pref set to the current input method. | 282 // A string pref set to the current input method. |
| 277 const char kLanguageCurrentInputMethod[] = | 283 const char kLanguageCurrentInputMethod[] = |
| 278 "settings.language.current_input_method"; | 284 "settings.language.current_input_method"; |
| 279 | 285 |
| (...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 const char kManagedDefaultPluginsSetting[] = | 1170 const char kManagedDefaultPluginsSetting[] = |
| 1165 "profile.managed_default_content_settings.plugins"; | 1171 "profile.managed_default_content_settings.plugins"; |
| 1166 const char kManagedDefaultPopupsSetting[] = | 1172 const char kManagedDefaultPopupsSetting[] = |
| 1167 "profile.managed_default_content_settings.popups"; | 1173 "profile.managed_default_content_settings.popups"; |
| 1168 | 1174 |
| 1169 // Dictionary for storing the set of known background pages (keys are extension | 1175 // Dictionary for storing the set of known background pages (keys are extension |
| 1170 // IDs of background page owners, value is a boolean that is true if the user | 1176 // IDs of background page owners, value is a boolean that is true if the user |
| 1171 // needs to acknowledge this page. | 1177 // needs to acknowledge this page. |
| 1172 const char kKnownBackgroundPages[] = "background_pages.known"; | 1178 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1173 } // namespace prefs | 1179 } // namespace prefs |
| OLD | NEW |