| 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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 // "_r2" suffixes are added to the three prefs above when we change the | 725 // "_r2" suffixes are added to the three prefs above when we change the |
| 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 double pref which determines a zooming scale of the screen magnifier. | 732 // A double pref which determines a zooming scale of the screen magnifier. |
| 733 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; | 733 const char kScreenMagnifierScale[] = "settings.a11y.screen_magnifier_scale"; |
| 734 // A string pref which determines what type of screen magnifier is enabled. | 734 // A string pref which determines what type of screen magnifier is enabled. |
| 735 const char kScreenMagnifierType[] = "settings.a11y.screen_magnifier_type"; | 735 const char kMagnifierType[] = "settings.a11y.screen_magnifier_type"; |
| 736 // A boolean pref which determines whether virtual keyboard is enabled. | 736 // A boolean pref which determines whether virtual keyboard is enabled. |
| 737 // TODO(hashimoto): Remove this pref. | 737 // TODO(hashimoto): Remove this pref. |
| 738 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; | 738 const char kVirtualKeyboardEnabled[] = "settings.a11y.virtual_keyboard"; |
| 739 | 739 |
| 740 // A boolean pref which turns on Advanced Filesystem | 740 // A boolean pref which turns on Advanced Filesystem |
| 741 // (USB support, SD card, etc). | 741 // (USB support, SD card, etc). |
| 742 const char kLabsAdvancedFilesystemEnabled[] = | 742 const char kLabsAdvancedFilesystemEnabled[] = |
| 743 "settings.labs.advanced_filesystem"; | 743 "settings.labs.advanced_filesystem"; |
| 744 | 744 |
| 745 // A boolean pref which turns on the mediaplayer. | 745 // A boolean pref which turns on the mediaplayer. |
| (...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2125 // Tracks the time of the last shown warning. Used to reset | 2125 // Tracks the time of the last shown warning. Used to reset |
| 2126 // |network_profile.warnings_left| after a silence period. | 2126 // |network_profile.warnings_left| after a silence period. |
| 2127 const char kNetworkProfileLastWarningTime[] = | 2127 const char kNetworkProfileLastWarningTime[] = |
| 2128 "network_profile.last_warning_time"; | 2128 "network_profile.last_warning_time"; |
| 2129 | 2129 |
| 2130 // 64-bit serialization of the time last policy usage statistics were collected | 2130 // 64-bit serialization of the time last policy usage statistics were collected |
| 2131 // by UMA_HISTOGRAM_ENUMERATION. | 2131 // by UMA_HISTOGRAM_ENUMERATION. |
| 2132 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2132 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2133 | 2133 |
| 2134 } // namespace prefs | 2134 } // namespace prefs |
| OLD | NEW |