| 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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 // "_r2" suffixes are added to the three prefs above when we change the | 730 // "_r2" suffixes are added to the three prefs above when we change the |
| 731 // preferences not user-configurable, not to sync them with cloud. | 731 // preferences not user-configurable, not to sync them with cloud. |
| 732 | 732 |
| 733 // A boolean pref which determines whether spoken feedback is enabled. | 733 // A boolean pref which determines whether spoken feedback is enabled. |
| 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 kScreenMagnifierType[] = "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 | 744 |
| 745 // A boolean pref which turns on Advanced Filesystem | 745 // A boolean pref which turns on Advanced Filesystem |
| 746 // (USB support, SD card, etc). | 746 // (USB support, SD card, etc). |
| 747 const char kLabsAdvancedFilesystemEnabled[] = | 747 const char kLabsAdvancedFilesystemEnabled[] = |
| 748 "settings.labs.advanced_filesystem"; | 748 "settings.labs.advanced_filesystem"; |
| 749 | 749 |
| 750 // A boolean pref which turns on the mediaplayer. | 750 // A boolean pref which turns on the mediaplayer. |
| (...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2141 // Tracks the time of the last shown warning. Used to reset | 2141 // Tracks the time of the last shown warning. Used to reset |
| 2142 // |network_profile.warnings_left| after a silence period. | 2142 // |network_profile.warnings_left| after a silence period. |
| 2143 const char kNetworkProfileLastWarningTime[] = | 2143 const char kNetworkProfileLastWarningTime[] = |
| 2144 "network_profile.last_warning_time"; | 2144 "network_profile.last_warning_time"; |
| 2145 | 2145 |
| 2146 // 64-bit serialization of the time last policy usage statistics were collected | 2146 // 64-bit serialization of the time last policy usage statistics were collected |
| 2147 // by UMA_HISTOGRAM_ENUMERATION. | 2147 // by UMA_HISTOGRAM_ENUMERATION. |
| 2148 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2148 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2149 | 2149 |
| 2150 } // namespace prefs | 2150 } // namespace prefs |
| OLD | NEW |