| 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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; | 734 const char kSpokenFeedbackEnabled[] = "settings.accessibility"; |
| 735 // A boolean pref which determines whether high conrast is enabled. | 735 // A boolean pref which determines whether high conrast is enabled. |
| 736 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; | 736 const char kHighContrastEnabled[] = "settings.a11y.high_contrast_enabled"; |
| 737 // 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. |
| 738 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 738 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
| 739 // A string pref which determines what type of screen magnifier is enabled. | 739 // A string pref which determines what type of screen magnifier is enabled. |
| 740 const char kMagnifierType[] = "settings.a11y.screen_magnifier_type"; | 740 const char kMagnifierType[] = "settings.a11y.screen_magnifier_type"; |
| 741 // A boolean pref which determines whether virtual keyboard is enabled. | 741 // A boolean pref which determines whether virtual keyboard is enabled. |
| 742 // TODO(hashimoto): Remove this pref. | 742 // TODO(hashimoto): Remove this pref. |
| 743 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 743 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
| 744 // A boolean pref which determines whether the accessibility menu shows |
| 745 // regardless of the state of a11y features. |
| 746 const char kShouldAlwaysShowAccessibilityMenu[] = "settings.a11y.enable_menu"; |
| 744 | 747 |
| 745 // A boolean pref which turns on Advanced Filesystem | 748 // A boolean pref which turns on Advanced Filesystem |
| 746 // (USB support, SD card, etc). | 749 // (USB support, SD card, etc). |
| 747 const char kLabsAdvancedFilesystemEnabled[] = | 750 const char kLabsAdvancedFilesystemEnabled[] = |
| 748 "settings.labs.advanced_filesystem"; | 751 "settings.labs.advanced_filesystem"; |
| 749 | 752 |
| 750 // A boolean pref which turns on the mediaplayer. | 753 // A boolean pref which turns on the mediaplayer. |
| 751 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 754 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
| 752 | 755 |
| 753 // A boolean pref that turns on screen locker. | 756 // A boolean pref that turns on screen locker. |
| (...skipping 1398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2152 // Tracks the time of the last shown warning. Used to reset | 2155 // Tracks the time of the last shown warning. Used to reset |
| 2153 // |network_profile.warnings_left| after a silence period. | 2156 // |network_profile.warnings_left| after a silence period. |
| 2154 const char kNetworkProfileLastWarningTime[] = | 2157 const char kNetworkProfileLastWarningTime[] = |
| 2155 "network_profile.last_warning_time"; | 2158 "network_profile.last_warning_time"; |
| 2156 | 2159 |
| 2157 // 64-bit serialization of the time last policy usage statistics were collected | 2160 // 64-bit serialization of the time last policy usage statistics were collected |
| 2158 // by UMA_HISTOGRAM_ENUMERATION. | 2161 // by UMA_HISTOGRAM_ENUMERATION. |
| 2159 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2162 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2160 | 2163 |
| 2161 } // namespace prefs | 2164 } // namespace prefs |
| OLD | NEW |