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