| 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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 903 |
| 904 // Integer prefs indicating the minimum and maximum lengths of the lock screen | 904 // Integer prefs indicating the minimum and maximum lengths of the lock screen |
| 905 // pin. | 905 // pin. |
| 906 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; | 906 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; |
| 907 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; | 907 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; |
| 908 // Boolean pref indicating whether users are allowed to set easy pins. | 908 // Boolean pref indicating whether users are allowed to set easy pins. |
| 909 const char kPinUnlockAllowEasyPins[] = "pin_unlock_allow_easy_pins"; | 909 const char kPinUnlockAllowEasyPins[] = "pin_unlock_allow_easy_pins"; |
| 910 |
| 911 const char kScreenUnlockWhitelist[] = "screen_unlock_whitelist"; |
| 912 const char kScreenUnlockPasswordConfirmationFrequency[] = |
| 913 "screen_unlock_password_confirmation_frequency"; |
| 910 #endif // defined(OS_CHROMEOS) | 914 #endif // defined(OS_CHROMEOS) |
| 911 | 915 |
| 912 // A boolean pref set to true if a Home button to open the Home pages should be | 916 // A boolean pref set to true if a Home button to open the Home pages should be |
| 913 // visible on the toolbar. | 917 // visible on the toolbar. |
| 914 const char kShowHomeButton[] = "browser.show_home_button"; | 918 const char kShowHomeButton[] = "browser.show_home_button"; |
| 915 | 919 |
| 916 // Boolean pref to define the default setting for "block offensive words". | 920 // Boolean pref to define the default setting for "block offensive words". |
| 917 // The old key value is kept to avoid unnecessary migration code. | 921 // The old key value is kept to avoid unnecessary migration code. |
| 918 const char kSpeechRecognitionFilterProfanities[] = | 922 const char kSpeechRecognitionFilterProfanities[] = |
| 919 "browser.speechinput_censor_results"; | 923 "browser.speechinput_censor_results"; |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2261 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2265 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2262 | 2266 |
| 2263 // A list of origin trial features to disable by policy. | 2267 // A list of origin trial features to disable by policy. |
| 2264 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2268 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2265 | 2269 |
| 2266 // Policy that indicates the state of updates for the binary components. | 2270 // Policy that indicates the state of updates for the binary components. |
| 2267 const char kComponentUpdatesEnabled[] = | 2271 const char kComponentUpdatesEnabled[] = |
| 2268 "component_updates.component_updates_enabled"; | 2272 "component_updates.component_updates_enabled"; |
| 2269 | 2273 |
| 2270 } // namespace prefs | 2274 } // namespace prefs |
| OLD | NEW |