| 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 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2088 // Tracks the time of the last shown warning. Used to reset | 2090 // Tracks the time of the last shown warning. Used to reset |
| 2089 // |network_profile.warnings_left| after a silence period. | 2091 // |network_profile.warnings_left| after a silence period. |
| 2090 const char kNetworkProfileLastWarningTime[] = | 2092 const char kNetworkProfileLastWarningTime[] = |
| 2091 "network_profile.last_warning_time"; | 2093 "network_profile.last_warning_time"; |
| 2092 | 2094 |
| 2093 // 64-bit serialization of the time last policy usage statistics were collected | 2095 // 64-bit serialization of the time last policy usage statistics were collected |
| 2094 // by UMA_HISTOGRAM_ENUMERATION. | 2096 // by UMA_HISTOGRAM_ENUMERATION. |
| 2095 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2097 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2096 | 2098 |
| 2097 } // namespace prefs | 2099 } // namespace prefs |
| OLD | NEW |