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

Side by Side Diff: components/proximity_auth/proximity_auth_pref_names.cc

Issue 2973243002: Adding pref to store the user-selected proximity threshold. (Closed)
Patch Set: Fixing merge issues Created 3 years, 5 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
OLDNEW
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
OLDNEW
« no previous file with comments | « components/proximity_auth/proximity_auth_pref_names.h ('k') | components/proximity_auth/proximity_auth_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698