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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 // A integer pref which determines key repeat interval (in ms). | 722 // A integer pref which determines key repeat interval (in ms). |
723 const char kLanguageXkbAutoRepeatInterval[] = | 723 const char kLanguageXkbAutoRepeatInterval[] = |
724 "settings.language.xkb_auto_repeat_interval_r2"; | 724 "settings.language.xkb_auto_repeat_interval_r2"; |
725 // "_r2" suffixes are added to the three prefs above when we change the | 725 // "_r2" suffixes are added to the three prefs above when we change the |
726 // preferences not user-configurable, not to sync them with cloud. | 726 // preferences not user-configurable, not to sync them with cloud. |
727 | 727 |
728 // A boolean pref which determines whether spoken feedback is enabled. | 728 // A boolean pref which determines whether spoken feedback is enabled. |
729 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; | 729 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; |
730 // A boolean pref which determines whether high conrast is enabled. | 730 // A boolean pref which determines whether high conrast is enabled. |
731 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; | 731 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; |
732 // A boolean pref which determines whether screen magnifier is enabled. | |
733 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; | |
734 // A double pref which determines a zooming scale of the screen magnifier. | 732 // A double pref which determines a zooming scale of the screen magnifier. |
735 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 733 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
| 734 // A string pref which determines what type of screen magnifier is enabled. |
| 735 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type"; |
736 // A boolean pref which determines whether virtual keyboard is enabled. | 736 // A boolean pref which determines whether virtual keyboard is enabled. |
737 // TODO(hashimoto): Remove this pref. | 737 // TODO(hashimoto): Remove this pref. |
738 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 738 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
739 | 739 |
740 // A boolean pref which turns on Advanced Filesystem | 740 // A boolean pref which turns on Advanced Filesystem |
741 // (USB support, SD card, etc). | 741 // (USB support, SD card, etc). |
742 const char kLabsAdvancedFilesystemEnabled[] = | 742 const char kLabsAdvancedFilesystemEnabled[] = |
743 "settings.labs.advanced_filesystem"; | 743 "settings.labs.advanced_filesystem"; |
744 | 744 |
745 // A boolean pref which turns on the mediaplayer. | 745 // A boolean pref which turns on the mediaplayer. |
(...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2137 // Tracks the time of the last shown warning. Used to reset | 2137 // Tracks the time of the last shown warning. Used to reset |
2138 // |network_profile.warnings_left| after a silence period. | 2138 // |network_profile.warnings_left| after a silence period. |
2139 const char kNetworkProfileLastWarningTime[] = | 2139 const char kNetworkProfileLastWarningTime[] = |
2140 "network_profile.last_warning_time"; | 2140 "network_profile.last_warning_time"; |
2141 | 2141 |
2142 // 64-bit serialization of the time last policy usage statistics were collected | 2142 // 64-bit serialization of the time last policy usage statistics were collected |
2143 // by UMA_HISTOGRAM_ENUMERATION. | 2143 // by UMA_HISTOGRAM_ENUMERATION. |
2144 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2144 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2145 | 2145 |
2146 } // namespace prefs | 2146 } // namespace prefs |
OLD | NEW |