| 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 |
| 11 // reauthing with the password after a given time period has elapsed. |
| 12 const char kProximityAuthLastPasswordEntryTimestampMs[] = |
| 13 "proximity_auth.last_password_entry_timestamp_ms"; |
| 14 |
| 10 // The dictionary containing remote BLE devices. | 15 // The dictionary containing remote BLE devices. |
| 11 const char kProximityAuthRemoteBleDevices[] = | 16 const char kProximityAuthRemoteBleDevices[] = |
| 12 "proximity_auth.remote_ble_devices"; | 17 "proximity_auth.remote_ble_devices"; |
| 13 | 18 |
| 14 } // namespace prefs | 19 } // namespace prefs |
| 15 } // namespace proximity_auth | 20 } // namespace proximity_auth |
| OLD | NEW |