| 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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 // on this list. | 919 // on this list. |
| 920 const char kQuickUnlockModeWhitelist[] = "quick_unlock_mode_whitelist"; | 920 const char kQuickUnlockModeWhitelist[] = "quick_unlock_mode_whitelist"; |
| 921 // Enum that specifies how often a user has to enter their password to continue | 921 // Enum that specifies how often a user has to enter their password to continue |
| 922 // using quick unlock. These values are the same as the ones in | 922 // using quick unlock. These values are the same as the ones in |
| 923 // chromeos::QuickUnlockPasswordConfirmationFrequency. | 923 // chromeos::QuickUnlockPasswordConfirmationFrequency. |
| 924 // 0 - six hours. Users will have to enter their password every six hours. | 924 // 0 - six hours. Users will have to enter their password every six hours. |
| 925 // 1 - twelve hours. Users will have to enter their password every twelve hours. | 925 // 1 - twelve hours. Users will have to enter their password every twelve hours. |
| 926 // 2 - day. Users will have to enter their password every day. | 926 // 2 - day. Users will have to enter their password every day. |
| 927 // 3 - week. Users will have to enter their password every week. | 927 // 3 - week. Users will have to enter their password every week. |
| 928 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; | 928 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; |
| 929 |
| 930 // Boolean pref indicating whether fingerprint unlock is enabled. |
| 931 const char kEnableQuickUnlockFingerprint[] = |
| 932 "settings.enable_quick_unlock_fingerprint"; |
| 929 #endif // defined(OS_CHROMEOS) | 933 #endif // defined(OS_CHROMEOS) |
| 930 | 934 |
| 931 // A boolean pref set to true if a Home button to open the Home pages should be | 935 // A boolean pref set to true if a Home button to open the Home pages should be |
| 932 // visible on the toolbar. | 936 // visible on the toolbar. |
| 933 const char kShowHomeButton[] = "browser.show_home_button"; | 937 const char kShowHomeButton[] = "browser.show_home_button"; |
| 934 | 938 |
| 935 // Boolean pref to define the default setting for "block offensive words". | 939 // Boolean pref to define the default setting for "block offensive words". |
| 936 // The old key value is kept to avoid unnecessary migration code. | 940 // The old key value is kept to avoid unnecessary migration code. |
| 937 const char kSpeechRecognitionFilterProfanities[] = | 941 const char kSpeechRecognitionFilterProfanities[] = |
| 938 "browser.speechinput_censor_results"; | 942 "browser.speechinput_censor_results"; |
| (...skipping 1393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2332 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = | 2336 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = |
| 2333 "search_geolocation_pre_disclosure_metrics_recorded"; | 2337 "search_geolocation_pre_disclosure_metrics_recorded"; |
| 2334 | 2338 |
| 2335 // Whether the metrics for the state of geolocation post-disclosure being shown | 2339 // Whether the metrics for the state of geolocation post-disclosure being shown |
| 2336 // have been recorded. | 2340 // have been recorded. |
| 2337 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2341 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2338 "search_geolocation_post_disclosure_metrics_recorded"; | 2342 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2339 #endif | 2343 #endif |
| 2340 | 2344 |
| 2341 } // namespace prefs | 2345 } // namespace prefs |
| OLD | NEW |