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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 // A integer pref which determines key repeat interval (in ms). | 725 // A integer pref which determines key repeat interval (in ms). |
726 const char kLanguageXkbAutoRepeatInterval[] = | 726 const char kLanguageXkbAutoRepeatInterval[] = |
727 "settings.language.xkb_auto_repeat_interval_r2"; | 727 "settings.language.xkb_auto_repeat_interval_r2"; |
728 // "_r2" suffixes are added to the three prefs above when we change the | 728 // "_r2" suffixes are added to the three prefs above when we change the |
729 // preferences not user-configurable, not to sync them with cloud. | 729 // preferences not user-configurable, not to sync them with cloud. |
730 | 730 |
731 // A boolean pref which determines whether spoken feedback is enabled. | 731 // A boolean pref which determines whether spoken feedback is enabled. |
732 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; | 732 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; |
733 // A boolean pref which determines whether high conrast is enabled. | 733 // A boolean pref which determines whether high conrast is enabled. |
734 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; | 734 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; |
| 735 // A boolean pref which determines whether screen magnifier is enabled. |
| 736 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; |
735 // A double pref which determines a zooming scale of the screen magnifier. | 737 // A double pref which determines a zooming scale of the screen magnifier. |
736 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 738 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
737 // A string pref which determines what type of screen magnifier is enabled. | |
738 const char kMagnifierType[] = "settings.a11y.screen_magnifier_type"; | |
739 // A boolean pref which determines whether virtual keyboard is enabled. | 739 // A boolean pref which determines whether virtual keyboard is enabled. |
740 // TODO(hashimoto): Remove this pref. | 740 // TODO(hashimoto): Remove this pref. |
741 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 741 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
742 // A boolean pref which determines whether the accessibility menu shows | 742 // A boolean pref which determines whether the accessibility menu shows |
743 // regardless of the state of a11y features. | 743 // regardless of the state of a11y features. |
744 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; | 744 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; |
745 | 745 |
746 // A boolean pref which turns on Advanced Filesystem | 746 // A boolean pref which turns on Advanced Filesystem |
747 // (USB support, SD card, etc). | 747 // (USB support, SD card, etc). |
748 const char kLabsAdvancedFilesystemEnabled[] = | 748 const char kLabsAdvancedFilesystemEnabled[] = |
(...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2175 // 64-bit serialization of the time last policy usage statistics were collected | 2175 // 64-bit serialization of the time last policy usage statistics were collected |
2176 // by UMA_HISTOGRAM_ENUMERATION. | 2176 // by UMA_HISTOGRAM_ENUMERATION. |
2177 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2177 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2178 | 2178 |
2179 #if defined(OS_CHROMEOS) | 2179 #if defined(OS_CHROMEOS) |
2180 // The RLZ brand code, if enabled. | 2180 // The RLZ brand code, if enabled. |
2181 const char kRLZBrand[] = "rlz.brand"; | 2181 const char kRLZBrand[] = "rlz.brand"; |
2182 #endif | 2182 #endif |
2183 | 2183 |
2184 } // namespace prefs | 2184 } // namespace prefs |
OLD | NEW |