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 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; |
| 904 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; |
903 #endif // defined(OS_CHROMEOS) | 905 #endif // defined(OS_CHROMEOS) |
904 | 906 |
905 // A boolean pref set to true if a Home button to open the Home pages should be | 907 // A boolean pref set to true if a Home button to open the Home pages should be |
906 // visible on the toolbar. | 908 // visible on the toolbar. |
907 const char kShowHomeButton[] = "browser.show_home_button"; | 909 const char kShowHomeButton[] = "browser.show_home_button"; |
908 | 910 |
909 // Boolean pref to define the default setting for "block offensive words". | 911 // Boolean pref to define the default setting for "block offensive words". |
910 // The old key value is kept to avoid unnecessary migration code. | 912 // The old key value is kept to avoid unnecessary migration code. |
911 const char kSpeechRecognitionFilterProfanities[] = | 913 const char kSpeechRecognitionFilterProfanities[] = |
912 "browser.speechinput_censor_results"; | 914 "browser.speechinput_censor_results"; |
(...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2258 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2259 | 2261 |
2260 // A list of origin trial features to disable by policy. | 2262 // A list of origin trial features to disable by policy. |
2261 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2262 | 2264 |
2263 // Policy that indicates the state of updates for the binary components. | 2265 // Policy that indicates the state of updates for the binary components. |
2264 const char kComponentUpdatesEnabled[] = | 2266 const char kComponentUpdatesEnabled[] = |
2265 "component_updates.component_updates_enabled"; | 2267 "component_updates.component_updates_enabled"; |
2266 | 2268 |
2267 } // namespace prefs | 2269 } // namespace prefs |
OLD | NEW |