| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 // An integer pref. Holds one of several values: | 893 // An integer pref. Holds one of several values: |
| 894 // 0: Supported. Device is in supported state. | 894 // 0: Supported. Device is in supported state. |
| 895 // 1: Security Only. Device is in Security-Only update (after initial 5 years). | 895 // 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| 896 // 2: EOL. Device is End of Life(No more updates expected). | 896 // 2: EOL. Device is End of Life(No more updates expected). |
| 897 // This value needs to be consistent with EndOfLifeStatus enum. | 897 // This value needs to be consistent with EndOfLifeStatus enum. |
| 898 const char kEolStatus[] = "eol_status"; | 898 const char kEolStatus[] = "eol_status"; |
| 899 | 899 |
| 900 // Boolean pref indicating the End Of Life notification was dismissed by the | 900 // Boolean pref indicating the End Of Life notification was dismissed by the |
| 901 // user. | 901 // user. |
| 902 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; | 902 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; |
| 903 |
| 904 // Integer prefs indicating the minimum and maximum lengths of the lock screen |
| 905 // pin. |
| 906 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; |
| 907 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; |
| 908 // Boolean pref indicating whether users are allowed to set easy pins. |
| 909 const char kPinUnlockAllowEasyPins[] = "pin_unlock_allow_easy_pins"; |
| 903 #endif // defined(OS_CHROMEOS) | 910 #endif // defined(OS_CHROMEOS) |
| 904 | 911 |
| 905 // A boolean pref set to true if a Home button to open the Home pages should be | 912 // A boolean pref set to true if a Home button to open the Home pages should be |
| 906 // visible on the toolbar. | 913 // visible on the toolbar. |
| 907 const char kShowHomeButton[] = "browser.show_home_button"; | 914 const char kShowHomeButton[] = "browser.show_home_button"; |
| 908 | 915 |
| 909 // Boolean pref to define the default setting for "block offensive words". | 916 // Boolean pref to define the default setting for "block offensive words". |
| 910 // The old key value is kept to avoid unnecessary migration code. | 917 // The old key value is kept to avoid unnecessary migration code. |
| 911 const char kSpeechRecognitionFilterProfanities[] = | 918 const char kSpeechRecognitionFilterProfanities[] = |
| 912 "browser.speechinput_censor_results"; | 919 "browser.speechinput_censor_results"; |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2255 | 2262 |
| 2256 // A list of origin trial features to disable by policy. | 2263 // A list of origin trial features to disable by policy. |
| 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2258 | 2265 |
| 2259 // Policy that indicates the state of updates for the binary components. | 2266 // Policy that indicates the state of updates for the binary components. |
| 2260 const char kComponentUpdatesEnabled[] = | 2267 const char kComponentUpdatesEnabled[] = |
| 2261 "component_updates.component_updates_enabled"; | 2268 "component_updates.component_updates_enabled"; |
| 2262 | 2269 |
| 2263 } // namespace prefs | 2270 } // namespace prefs |
| OLD | NEW |