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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 // when the policy is lifted the original mute state is restored. This setting | 473 // when the policy is lifted the original mute state is restored. This setting |
474 // is here only for migration purposes now. It is being replaced by the | 474 // is here only for migration purposes now. It is being replaced by the |
475 // |kAudioDevicesMute| setting. | 475 // |kAudioDevicesMute| setting. |
476 const char kAudioMute[] = "settings.audio.mute"; | 476 const char kAudioMute[] = "settings.audio.mute"; |
477 | 477 |
478 // A double pref storing the user-requested volume. This setting is here only | 478 // A double pref storing the user-requested volume. This setting is here only |
479 // for migration purposes now. It is being replaced by the | 479 // for migration purposes now. It is being replaced by the |
480 // |kAudioDevicesVolumePercent| setting. | 480 // |kAudioDevicesVolumePercent| setting. |
481 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 481 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
482 | 482 |
483 // An integer pref to record user's spring charger check result. | |
484 // 0 - unknown charger, not checked yet. | |
485 // 1 - confirmed safe charger. | |
486 // 2 - confirmed original charger and declined to order new charger. | |
487 // 3 - confirmed original charger and ordered new charger online. | |
488 // 4 - confirmed original charger and ordered new charger by phone. | |
489 // 5 - confirmed original charger, ordered a new one online, but continue to use | |
490 // the old one. | |
491 // 6 - confirmed original charger, ordered a new one by phone, but continue to | |
492 // use the old one. | |
493 const char kSpringChargerCheck[] = "settings.spring_charger.check_result"; | |
494 | |
495 // A boolean pref set to true if touchpad tap-to-click is enabled. | 483 // A boolean pref set to true if touchpad tap-to-click is enabled. |
496 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 484 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
497 | 485 |
498 // A boolean pref set to true if touchpad tap-dragging is enabled. | 486 // A boolean pref set to true if touchpad tap-dragging is enabled. |
499 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; | 487 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; |
500 | 488 |
501 // A boolean pref set to true if touchpad three-finger-click is enabled. | 489 // A boolean pref set to true if touchpad three-finger-click is enabled. |
502 const char kEnableTouchpadThreeFingerClick[] = | 490 const char kEnableTouchpadThreeFingerClick[] = |
503 "settings.touchpad.enable_three_finger_click"; | 491 "settings.touchpad.enable_three_finger_click"; |
504 | 492 |
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2283 // bubble. | 2271 // bubble. |
2284 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; | 2272 const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; |
2285 | 2273 |
2286 // The count of user's "Nope" for the password bubble. | 2274 // The count of user's "Nope" for the password bubble. |
2287 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2275 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2288 | 2276 |
2289 // Last user's interaction with the password bubble. | 2277 // Last user's interaction with the password bubble. |
2290 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2278 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2291 | 2279 |
2292 } // namespace prefs | 2280 } // namespace prefs |
OLD | NEW |