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