| 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 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 "settings.language.xkb_auto_repeat_interval_r2"; | 687 "settings.language.xkb_auto_repeat_interval_r2"; |
| 688 // "_r2" suffixes are added to the three prefs above when we change the | 688 // "_r2" suffixes are added to the three prefs above when we change the |
| 689 // preferences not user-configurable, not to sync them with cloud. | 689 // preferences not user-configurable, not to sync them with cloud. |
| 690 | 690 |
| 691 // A boolean pref which determines whether spoken feedback is enabled. | 691 // A boolean pref which determines whether spoken feedback is enabled. |
| 692 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; | 692 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; |
| 693 // A boolean pref which determines whether high conrast is enabled. | 693 // A boolean pref which determines whether high conrast is enabled. |
| 694 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; | 694 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; |
| 695 // A boolean pref which determines whether screen magnifier is enabled. | 695 // A boolean pref which determines whether screen magnifier is enabled. |
| 696 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; | 696 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; |
| 697 // A boolean pref which determines whether the partial magnifier is enabled. |
| 698 const char kPartialScreenMagnifierEnabled[] = "settings.a11y.partial_magnifier"; |
| 697 // A boolean pref which determines whether virtual keyboard is enabled. | 699 // A boolean pref which determines whether virtual keyboard is enabled. |
| 698 // TODO(hashimoto): Remove this pref. | 700 // TODO(hashimoto): Remove this pref. |
| 699 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 701 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
| 700 | 702 |
| 701 // A boolean pref which turns on Advanced Filesystem | 703 // A boolean pref which turns on Advanced Filesystem |
| 702 // (USB support, SD card, etc). | 704 // (USB support, SD card, etc). |
| 703 const char kLabsAdvancedFilesystemEnabled[] = | 705 const char kLabsAdvancedFilesystemEnabled[] = |
| 704 "settings.labs.advanced_filesystem"; | 706 "settings.labs.advanced_filesystem"; |
| 705 | 707 |
| 706 // A boolean pref which turns on the mediaplayer. | 708 // A boolean pref which turns on the mediaplayer. |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 | 2019 |
| 2018 // Counts how many more times the 'profile on a network share' warning should be | 2020 // Counts how many more times the 'profile on a network share' warning should be |
| 2019 // shown to the user before the next silence period. | 2021 // shown to the user before the next silence period. |
| 2020 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2022 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 2021 // Tracks the time of the last shown warning. Used to reset | 2023 // Tracks the time of the last shown warning. Used to reset |
| 2022 // |network_profile.warnings_left| after a silence period. | 2024 // |network_profile.warnings_left| after a silence period. |
| 2023 const char kNetworkProfileLastWarningTime[] = | 2025 const char kNetworkProfileLastWarningTime[] = |
| 2024 "network_profile.last_warning_time"; | 2026 "network_profile.last_warning_time"; |
| 2025 | 2027 |
| 2026 } // namespace prefs | 2028 } // namespace prefs |
| OLD | NEW |