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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 // preferences not user-configurable, not to sync them with cloud. | 720 // preferences not user-configurable, not to sync them with cloud. |
721 | 721 |
722 // A boolean pref which determines whether spoken feedback is enabled. | 722 // A boolean pref which determines whether spoken feedback is enabled. |
723 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; | 723 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; |
724 // A boolean pref which determines whether high conrast is enabled. | 724 // A boolean pref which determines whether high conrast is enabled. |
725 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; | 725 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; |
726 // A boolean pref which determines whether screen magnifier is enabled. | 726 // A boolean pref which determines whether screen magnifier is enabled. |
727 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; | 727 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; |
728 // A double pref which determines a zooming scale of the screen magnifier. | 728 // A double pref which determines a zooming scale of the screen magnifier. |
729 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 729 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
| 730 // A boolean pref which determines whether the partial magnifier is enabled. |
| 731 const char kPartialScreenMagnifierEnabled[] = "settings.a11y.partial_magnifier"; |
730 // A boolean pref which determines whether virtual keyboard is enabled. | 732 // A boolean pref which determines whether virtual keyboard is enabled. |
731 // TODO(hashimoto): Remove this pref. | 733 // TODO(hashimoto): Remove this pref. |
732 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 734 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
733 | 735 |
734 // A boolean pref which turns on Advanced Filesystem | 736 // A boolean pref which turns on Advanced Filesystem |
735 // (USB support, SD card, etc). | 737 // (USB support, SD card, etc). |
736 const char kLabsAdvancedFilesystemEnabled[] = | 738 const char kLabsAdvancedFilesystemEnabled[] = |
737 "settings.labs.advanced_filesystem"; | 739 "settings.labs.advanced_filesystem"; |
738 | 740 |
739 // A boolean pref which turns on the mediaplayer. | 741 // A boolean pref which turns on the mediaplayer. |
(...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2106 // Tracks the time of the last shown warning. Used to reset | 2108 // Tracks the time of the last shown warning. Used to reset |
2107 // |network_profile.warnings_left| after a silence period. | 2109 // |network_profile.warnings_left| after a silence period. |
2108 const char kNetworkProfileLastWarningTime[] = | 2110 const char kNetworkProfileLastWarningTime[] = |
2109 "network_profile.last_warning_time"; | 2111 "network_profile.last_warning_time"; |
2110 | 2112 |
2111 // 64-bit serialization of the time last policy usage statistics were collected | 2113 // 64-bit serialization of the time last policy usage statistics were collected |
2112 // by UMA_HISTOGRAM_ENUMERATION. | 2114 // by UMA_HISTOGRAM_ENUMERATION. |
2113 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2115 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
2114 | 2116 |
2115 } // namespace prefs | 2117 } // namespace prefs |
OLD | NEW |