| 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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 732 // A boolean pref which determines whether screen magnifier is enabled. |
| 733 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; | 733 const char kScreenMagnifierEnabled[] = "settings.a11y.screen_magnifier"; |
| 734 // A double pref which determines a zooming scale of the screen magnifier. | 734 // A double pref which determines a zooming scale of the screen magnifier. |
| 735 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 735 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
| 736 // A boolean pref which determines whether the partial magnifier is enabled. |
| 737 const char kPartialScreenMagnifierEnabled[] = "settings.a11y.partial_magnifier"; |
| 736 // A boolean pref which determines whether virtual keyboard is enabled. | 738 // A boolean pref which determines whether virtual keyboard is enabled. |
| 737 // TODO(hashimoto): Remove this pref. | 739 // TODO(hashimoto): Remove this pref. |
| 738 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 740 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
| 739 | 741 |
| 740 // A boolean pref which turns on Advanced Filesystem | 742 // A boolean pref which turns on Advanced Filesystem |
| 741 // (USB support, SD card, etc). | 743 // (USB support, SD card, etc). |
| 742 const char kLabsAdvancedFilesystemEnabled[] = | 744 const char kLabsAdvancedFilesystemEnabled[] = |
| 743 "settings.labs.advanced_filesystem"; | 745 "settings.labs.advanced_filesystem"; |
| 744 | 746 |
| 745 // A boolean pref which turns on the mediaplayer. | 747 // A boolean pref which turns on the mediaplayer. |
| (...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2131 // Tracks the time of the last shown warning. Used to reset | 2133 // Tracks the time of the last shown warning. Used to reset |
| 2132 // |network_profile.warnings_left| after a silence period. | 2134 // |network_profile.warnings_left| after a silence period. |
| 2133 const char kNetworkProfileLastWarningTime[] = | 2135 const char kNetworkProfileLastWarningTime[] = |
| 2134 "network_profile.last_warning_time"; | 2136 "network_profile.last_warning_time"; |
| 2135 | 2137 |
| 2136 // 64-bit serialization of the time last policy usage statistics were collected | 2138 // 64-bit serialization of the time last policy usage statistics were collected |
| 2137 // by UMA_HISTOGRAM_ENUMERATION. | 2139 // by UMA_HISTOGRAM_ENUMERATION. |
| 2138 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2140 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2139 | 2141 |
| 2140 } // namespace prefs | 2142 } // namespace prefs |
| OLD | NEW |