| 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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 // 1 - twelve hours. Users will have to enter their password every twelve hours. | 937 // 1 - twelve hours. Users will have to enter their password every twelve hours. |
| 938 // 2 - day. Users will have to enter their password every day. | 938 // 2 - day. Users will have to enter their password every day. |
| 939 // 3 - week. Users will have to enter their password every week. | 939 // 3 - week. Users will have to enter their password every week. |
| 940 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; | 940 const char kQuickUnlockTimeout[] = "quick_unlock_timeout"; |
| 941 // Integer prefs indicating the minimum and maximum lengths of the lock screen | 941 // Integer prefs indicating the minimum and maximum lengths of the lock screen |
| 942 // pin. | 942 // pin. |
| 943 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; | 943 const char kPinUnlockMinimumLength[] = "pin_unlock_minimum_length"; |
| 944 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; | 944 const char kPinUnlockMaximumLength[] = "pin_unlock_maximum_length"; |
| 945 // Boolean pref indicating whether users are allowed to set easy pins. | 945 // Boolean pref indicating whether users are allowed to set easy pins. |
| 946 const char kPinUnlockWeakPinsAllowed[] = "pin_unlock_weak_pins_allowed"; | 946 const char kPinUnlockWeakPinsAllowed[] = "pin_unlock_weak_pins_allowed"; |
| 947 |
| 948 // Boolean pref indicating whether fingerprint unlock is enabled. |
| 949 const char kEnableQuickUnlockFingerprint[] = |
| 950 "settings.enable_quick_unlock_fingerprint"; |
| 947 #endif // defined(OS_CHROMEOS) | 951 #endif // defined(OS_CHROMEOS) |
| 948 | 952 |
| 949 // A boolean pref set to true if a Home button to open the Home pages should be | 953 // A boolean pref set to true if a Home button to open the Home pages should be |
| 950 // visible on the toolbar. | 954 // visible on the toolbar. |
| 951 const char kShowHomeButton[] = "browser.show_home_button"; | 955 const char kShowHomeButton[] = "browser.show_home_button"; |
| 952 | 956 |
| 953 // Boolean pref to define the default setting for "block offensive words". | 957 // Boolean pref to define the default setting for "block offensive words". |
| 954 // The old key value is kept to avoid unnecessary migration code. | 958 // The old key value is kept to avoid unnecessary migration code. |
| 955 const char kSpeechRecognitionFilterProfanities[] = | 959 const char kSpeechRecognitionFilterProfanities[] = |
| 956 "browser.speechinput_censor_results"; | 960 "browser.speechinput_censor_results"; |
| (...skipping 1410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2367 // have been recorded. | 2371 // have been recorded. |
| 2368 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2372 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2369 "search_geolocation_post_disclosure_metrics_recorded"; | 2373 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2370 #endif | 2374 #endif |
| 2371 | 2375 |
| 2372 // A dictionary which stores whether location access is enabled for the current | 2376 // A dictionary which stores whether location access is enabled for the current |
| 2373 // default search engine, if it is the Google search engine. | 2377 // default search engine, if it is the Google search engine. |
| 2374 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; | 2378 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; |
| 2375 | 2379 |
| 2376 } // namespace prefs | 2380 } // namespace prefs |
| OLD | NEW |