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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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. | 735 // A boolean pref which determines whether screen magnifier is enabled. |
736 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; | 736 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; |
737 // A string pref which determines what type of scre en magnifier is enabled. | |
Zachary Kuznia
2012/12/26 01:09:56
"An integer pref"
s/scre en/screen/
yoshiki
2013/01/07 05:38:13
Done.
| |
738 // Note that: 'screen_magnifier_type' had been used as string pref. Hence, | |
739 // we are using another name pref here. | |
740 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type2"; | |
737 // A double pref which determines a zooming scale of the screen magnifier. | 741 // A double pref which determines a zooming scale of the screen magnifier. |
738 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 742 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
739 // A boolean pref which determines whether virtual keyboard is enabled. | 743 // A boolean pref which determines whether virtual keyboard is enabled. |
740 // TODO(hashimoto): Remove this pref. | 744 // TODO(hashimoto): Remove this pref. |
741 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 745 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
742 // A boolean pref which determines whether the accessibility menu shows | 746 // A boolean pref which determines whether the accessibility menu shows |
743 // regardless of the state of a11y features. | 747 // regardless of the state of a11y features. |
744 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; | 748 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; |
745 | 749 |
746 // A boolean pref which turns on Advanced Filesystem | 750 // A boolean pref which turns on Advanced Filesystem |
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2206 // 64-bit serialization of the time last policy usage statistics were collected | 2210 // 64-bit serialization of the time last policy usage statistics were collected |
2207 // by UMA_HISTOGRAM_ENUMERATION. | 2211 // by UMA_HISTOGRAM_ENUMERATION. |
2208 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2212 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2209 | 2213 |
2210 #if defined(OS_CHROMEOS) | 2214 #if defined(OS_CHROMEOS) |
2211 // The RLZ brand code, if enabled. | 2215 // The RLZ brand code, if enabled. |
2212 const char kRLZBrand[] = "rlz.brand"; | 2216 const char kRLZBrand[] = "rlz.brand"; |
2213 #endif | 2217 #endif |
2214 | 2218 |
2215 } // namespace prefs | 2219 } // namespace prefs |
OLD | NEW |