Chromium Code Reviews| 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/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 896 // An integer pref. Holds one of several values: | 896 // An integer pref. Holds one of several values: |
| 897 // 0: Supported. Device is in supported state. | 897 // 0: Supported. Device is in supported state. |
| 898 // 1: Security Only. Device is in Security-Only update (after initial 5 years). | 898 // 1: Security Only. Device is in Security-Only update (after initial 5 years). |
| 899 // 2: EOL. Device is End of Life(No more updates expected). | 899 // 2: EOL. Device is End of Life(No more updates expected). |
| 900 // This value needs to be consistent with EndOfLifeStatus enum. | 900 // This value needs to be consistent with EndOfLifeStatus enum. |
| 901 const char kEolStatus[] = "eol_status"; | 901 const char kEolStatus[] = "eol_status"; |
| 902 | 902 |
| 903 // Boolean pref indicating the End Of Life notification was dismissed by the | 903 // Boolean pref indicating the End Of Life notification was dismissed by the |
| 904 // user. | 904 // user. |
| 905 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; | 905 const char kEolNotificationDismissed[] = "eol_notification_dismissed"; |
| 906 | |
| 907 const char kQuickUnlockModeWhitelist[] = "quick_unlock_mode_whitelist"; | |
| 908 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; | |
|
battre
2016/11/04 10:59:36
Add descriptions to these here?
sammiequon
2016/11/06 17:52:52
Done.
| |
| 906 #endif // defined(OS_CHROMEOS) | 909 #endif // defined(OS_CHROMEOS) |
| 907 | 910 |
| 908 // A boolean pref set to true if a Home button to open the Home pages should be | 911 // A boolean pref set to true if a Home button to open the Home pages should be |
| 909 // visible on the toolbar. | 912 // visible on the toolbar. |
| 910 const char kShowHomeButton[] = "browser.show_home_button"; | 913 const char kShowHomeButton[] = "browser.show_home_button"; |
| 911 | 914 |
| 912 // Boolean pref to define the default setting for "block offensive words". | 915 // Boolean pref to define the default setting for "block offensive words". |
| 913 // The old key value is kept to avoid unnecessary migration code. | 916 // The old key value is kept to avoid unnecessary migration code. |
| 914 const char kSpeechRecognitionFilterProfanities[] = | 917 const char kSpeechRecognitionFilterProfanities[] = |
| 915 "browser.speechinput_censor_results"; | 918 "browser.speechinput_censor_results"; |
| (...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2266 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2269 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2267 | 2270 |
| 2268 // A list of origin trial features to disable by policy. | 2271 // A list of origin trial features to disable by policy. |
| 2269 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2272 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2270 | 2273 |
| 2271 // Policy that indicates the state of updates for the binary components. | 2274 // Policy that indicates the state of updates for the binary components. |
| 2272 const char kComponentUpdatesEnabled[] = | 2275 const char kComponentUpdatesEnabled[] = |
| 2273 "component_updates.component_updates_enabled"; | 2276 "component_updates.component_updates_enabled"; |
| 2274 | 2277 |
| 2275 } // namespace prefs | 2278 } // namespace prefs |
| OLD | NEW |