Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2538303002: md-settings: Added settings for fingerprint unlock. (Closed)
Patch Set: Rebased. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/pref_names.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 1415 matching lines...) Expand 10 before | Expand all | Expand 10 after
2372 // have been recorded. 2376 // have been recorded.
2373 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = 2377 const char kSearchGeolocationPostDisclosureMetricsRecorded[] =
2374 "search_geolocation_post_disclosure_metrics_recorded"; 2378 "search_geolocation_post_disclosure_metrics_recorded";
2375 #endif 2379 #endif
2376 2380
2377 // A dictionary which stores whether location access is enabled for the current 2381 // A dictionary which stores whether location access is enabled for the current
2378 // default search engine, if it is the Google search engine. 2382 // default search engine, if it is the Google search engine.
2379 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting";
2380 2384
2381 } // namespace prefs 2385 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698