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"; | |
jdufault
2016/09/30 01:05:51
It looks like this needs a comment and should be s
sammiequon
2016/09/30 18:38:36
Done.
| |
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 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2256 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
2255 | 2257 |
2256 // A list of origin trial features to disable by policy. | 2258 // A list of origin trial features to disable by policy. |
2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2259 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
2258 | 2260 |
2259 // Policy that indicates the state of updates for the binary components. | 2261 // Policy that indicates the state of updates for the binary components. |
2260 const char kComponentUpdatesEnabled[] = | 2262 const char kComponentUpdatesEnabled[] = |
2261 "component_updates.component_updates_enabled"; | 2263 "component_updates.component_updates_enabled"; |
2262 | 2264 |
2263 } // namespace prefs | 2265 } // namespace prefs |
OLD | NEW |