| 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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 // 1 - twelve hours. Users will have to enter their password every twelve hours. | 931 // 1 - twelve hours. Users will have to enter their password every twelve hours. |
| 932 // 2 - day. Users will have to enter their password every day. | 932 // 2 - day. Users will have to enter their password every day. |
| 933 // 3 - week. Users will have to enter their password every week. | 933 // 3 - week. Users will have to enter their password every week. |
| 934 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; | 934 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; |
| 935 // Integer prefs indicating the minimum and maximum lengths of the lock screen | 935 // Integer prefs indicating the minimum and maximum lengths of the lock screen |
| 936 // pin. | 936 // pin. |
| 937 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; | 937 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; |
| 938 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; | 938 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; |
| 939 // Boolean pref indicating whether users are allowed to set easy pins. | 939 // Boolean pref indicating whether users are allowed to set easy pins. |
| 940 const char kPinUnlockWeakPinsAllowed[] = "pin_unlock_weak_pins_allowed"; | 940 const char kPinUnlockWeakPinsAllowed[] = "pin_unlock_weak_pins_allowed"; |
| 941 |
| 942 // Boolean pref indicating whether fingerprint unlock is enabled. |
| 943 const char kEnableQuickUnlockFingerprint[] = |
| 944 "settings.enable_quick_unlock_fingerprint"; |
| 941 #endif // defined(OS_CHROMEOS) | 945 #endif // defined(OS_CHROMEOS) |
| 942 | 946 |
| 943 // A boolean pref set to true if a Home button to open the Home pages should be | 947 // A boolean pref set to true if a Home button to open the Home pages should be |
| 944 // visible on the toolbar. | 948 // visible on the toolbar. |
| 945 const char kShowHomeButton[] = "browser.show_home_button"; | 949 const char kShowHomeButton[] = "browser.show_home_button"; |
| 946 | 950 |
| 947 // Boolean pref to define the default setting for "block offensive words". | 951 // Boolean pref to define the default setting for "block offensive words". |
| 948 // The old key value is kept to avoid unnecessary migration code. | 952 // The old key value is kept to avoid unnecessary migration code. |
| 949 const char kSpeechRecognitionFilterProfanities[] = | 953 const char kSpeechRecognitionFilterProfanities[] = |
| 950 "browser.speechinput_censor_results"; | 954 "browser.speechinput_censor_results"; |
| (...skipping 1393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2344 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = | 2348 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = |
| 2345 "search_geolocation_pre_disclosure_metrics_recorded"; | 2349 "search_geolocation_pre_disclosure_metrics_recorded"; |
| 2346 | 2350 |
| 2347 // Whether the metrics for the state of geolocation post-disclosure being shown | 2351 // Whether the metrics for the state of geolocation post-disclosure being shown |
| 2348 // have been recorded. | 2352 // have been recorded. |
| 2349 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2353 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2350 "search_geolocation_post_disclosure_metrics_recorded"; | 2354 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2351 #endif | 2355 #endif |
| 2352 | 2356 |
| 2353 } // namespace prefs | 2357 } // namespace prefs |
| OLD | NEW |