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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 // when the policy is lifted the original mute state is restored. This setting | 560 // when the policy is lifted the original mute state is restored. This setting |
561 // is here only for migration purposes now. It is being replaced by the | 561 // is here only for migration purposes now. It is being replaced by the |
562 // |kAudioDevicesMute| setting. | 562 // |kAudioDevicesMute| setting. |
563 const char kAudioMute[] = "settings.audio.mute"; | 563 const char kAudioMute[] = "settings.audio.mute"; |
564 | 564 |
565 // A double pref storing the user-requested volume. This setting is here only | 565 // A double pref storing the user-requested volume. This setting is here only |
566 // for migration purposes now. It is being replaced by the | 566 // for migration purposes now. It is being replaced by the |
567 // |kAudioDevicesVolumePercent| setting. | 567 // |kAudioDevicesVolumePercent| setting. |
568 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 568 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
569 | 569 |
| 570 // An integer pref to record user's spring charger check result. |
| 571 // 0 - unknown charger, not checked yet. |
| 572 // 1 - confirmed safe charger. |
| 573 // 2 - confirmed original charger and declined to order new charger. |
| 574 // 3 - confirmed original charger and ordered new charger online. |
| 575 // 4 - confirmed original charger and ordered new charger by phone. |
| 576 // 5 - confirmed original charger, ordered a new one online, but continue to use |
| 577 // the old one. |
| 578 // 6 - confirmed original charger, ordered a new one by phone, but continue to |
| 579 // use the old one. |
| 580 const char kSpringChargerCheck[] = "settings.spring_charger.check_result"; |
| 581 |
570 // A boolean pref set to true if touchpad tap-to-click is enabled. | 582 // A boolean pref set to true if touchpad tap-to-click is enabled. |
571 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 583 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
572 | 584 |
573 // A boolean pref set to true if touchpad tap-dragging is enabled. | 585 // A boolean pref set to true if touchpad tap-dragging is enabled. |
574 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; | 586 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; |
575 | 587 |
576 // A boolean pref set to true if touchpad three-finger-click is enabled. | 588 // A boolean pref set to true if touchpad three-finger-click is enabled. |
577 const char kEnableTouchpadThreeFingerClick[] = | 589 const char kEnableTouchpadThreeFingerClick[] = |
578 "settings.touchpad.enable_three_finger_click"; | 590 "settings.touchpad.enable_three_finger_click"; |
579 | 591 |
(...skipping 2049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2629 #if defined(OS_WIN) | 2641 #if defined(OS_WIN) |
2630 // Whether the password was blank, only valid if OS password was last changed | 2642 // Whether the password was blank, only valid if OS password was last changed |
2631 // on or before the value contained in kOsPasswordLastChanged. | 2643 // on or before the value contained in kOsPasswordLastChanged. |
2632 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2644 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2633 | 2645 |
2634 // The number of seconds since epoch that the OS password was last changed. | 2646 // The number of seconds since epoch that the OS password was last changed. |
2635 const char kOsPasswordLastChanged[] = | 2647 const char kOsPasswordLastChanged[] = |
2636 "password_manager.os_password_last_changed"; | 2648 "password_manager.os_password_last_changed"; |
2637 #endif | 2649 #endif |
2638 } // namespace prefs | 2650 } // namespace prefs |
OLD | NEW |