| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 // when the policy is lifted the original mute state is restored. This setting | 582 // when the policy is lifted the original mute state is restored. This setting |
| 583 // is here only for migration purposes now. It is being replaced by the | 583 // is here only for migration purposes now. It is being replaced by the |
| 584 // |kAudioDevicesMute| setting. | 584 // |kAudioDevicesMute| setting. |
| 585 const char kAudioMute[] = "settings.audio.mute"; | 585 const char kAudioMute[] = "settings.audio.mute"; |
| 586 | 586 |
| 587 // A double pref storing the user-requested volume. This setting is here only | 587 // A double pref storing the user-requested volume. This setting is here only |
| 588 // for migration purposes now. It is being replaced by the | 588 // for migration purposes now. It is being replaced by the |
| 589 // |kAudioDevicesVolumePercent| setting. | 589 // |kAudioDevicesVolumePercent| setting. |
| 590 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; | 590 const char kAudioVolumePercent[] = "settings.audio.volume_percent"; |
| 591 | 591 |
| 592 // An integer pref to record user's spring charger check result. |
| 593 // 0 - unknown charger, not checked yet. |
| 594 // 1 - confirmed safe charger. |
| 595 // 2 - confirmed original charger and declined to order new charger. |
| 596 // 3 - confirmed original charger and ordered new charger online. |
| 597 // 4 - confirmed original charger and ordered new charger by phone. |
| 598 // 5 - confirmed original charger, ordered a new one online, but continue to use |
| 599 // the old one. |
| 600 // 6 - confirmed original charger, ordered a new one by phone, but continue to |
| 601 // use the old one. |
| 602 const char kSpringChargerCheck[] = "settings.spring_charger.check_result"; |
| 603 |
| 592 // A boolean pref set to true if touchpad tap-to-click is enabled. | 604 // A boolean pref set to true if touchpad tap-to-click is enabled. |
| 593 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; | 605 const char kTapToClickEnabled[] = "settings.touchpad.enable_tap_to_click"; |
| 594 | 606 |
| 595 // A boolean pref set to true if touchpad tap-dragging is enabled. | 607 // A boolean pref set to true if touchpad tap-dragging is enabled. |
| 596 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; | 608 const char kTapDraggingEnabled[] = "settings.touchpad.enable_tap_dragging"; |
| 597 | 609 |
| 598 // A boolean pref set to true if touchpad three-finger-click is enabled. | 610 // A boolean pref set to true if touchpad three-finger-click is enabled. |
| 599 const char kEnableTouchpadThreeFingerClick[] = | 611 const char kEnableTouchpadThreeFingerClick[] = |
| 600 "settings.touchpad.enable_three_finger_click"; | 612 "settings.touchpad.enable_three_finger_click"; |
| 601 | 613 |
| (...skipping 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2536 // ActivityLog initialization before the extension system is initialized. | 2548 // ActivityLog initialization before the extension system is initialized. |
| 2537 const char kWatchdogExtensionActive[] = | 2549 const char kWatchdogExtensionActive[] = |
| 2538 "profile.extensions.activity_log.watchdog_extension_active"; | 2550 "profile.extensions.activity_log.watchdog_extension_active"; |
| 2539 | 2551 |
| 2540 // A dictionary pref which maps profile names to dictionary values which hold | 2552 // A dictionary pref which maps profile names to dictionary values which hold |
| 2541 // hashes of profile prefs that we track to detect changes that happen outside | 2553 // hashes of profile prefs that we track to detect changes that happen outside |
| 2542 // of Chrome. | 2554 // of Chrome. |
| 2543 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2555 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
| 2544 | 2556 |
| 2545 } // namespace prefs | 2557 } // namespace prefs |
| OLD | NEW |