Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(828)

Side by Side Diff: chrome/common/pref_names.cc

Issue 107103004: Implement the spring charger replacement UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Point iFrame to production site. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 2067 matching lines...) Expand 10 before | Expand all | Expand 10 after
2647 #if defined(OS_WIN) 2659 #if defined(OS_WIN)
2648 // Whether the password was blank, only valid if OS password was last changed 2660 // Whether the password was blank, only valid if OS password was last changed
2649 // on or before the value contained in kOsPasswordLastChanged. 2661 // on or before the value contained in kOsPasswordLastChanged.
2650 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; 2662 const char kOsPasswordBlank[] = "password_manager.os_password_blank";
2651 2663
2652 // The number of seconds since epoch that the OS password was last changed. 2664 // The number of seconds since epoch that the OS password was last changed.
2653 const char kOsPasswordLastChanged[] = 2665 const char kOsPasswordLastChanged[] =
2654 "password_manager.os_password_last_changed"; 2666 "password_manager.os_password_last_changed";
2655 #endif 2667 #endif
2656 } // namespace prefs 2668 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698