OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "components/proximity_auth/proximity_auth_pref_names.h" | 5 #include "components/proximity_auth/proximity_auth_pref_names.h" |
6 | 6 |
7 namespace proximity_auth { | 7 namespace proximity_auth { |
8 namespace prefs { | 8 namespace prefs { |
9 | 9 |
10 // The timestamp of the last password entry in milliseconds, used to enforce | 10 // The timestamp of the last password entry in milliseconds, used to enforce |
11 // reauthing with the password after a given time period has elapsed. | 11 // reauthing with the password after a given time period has elapsed. |
12 const char kProximityAuthLastPasswordEntryTimestampMs[] = | 12 const char kProximityAuthLastPasswordEntryTimestampMs[] = |
13 "proximity_auth.last_password_entry_timestamp_ms"; | 13 "proximity_auth.last_password_entry_timestamp_ms"; |
14 | 14 |
15 // The dictionary containing remote BLE devices. | 15 // The dictionary containing remote BLE devices. |
16 const char kProximityAuthRemoteBleDevices[] = | 16 const char kProximityAuthRemoteBleDevices[] = |
17 "proximity_auth.remote_ble_devices"; | 17 "proximity_auth.remote_ble_devices"; |
18 | 18 |
| 19 // How close the remote and the local device should be in order to use Easy |
| 20 // Unlock. |
| 21 const char kEasyUnlockProximityThreshold[] = "easy_unlock.proximity_threshold"; |
| 22 |
19 } // namespace prefs | 23 } // namespace prefs |
20 } // namespace proximity_auth | 24 } // namespace proximity_auth |
OLD | NEW |