Index: chrome/common/pref_names.cc |
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc |
index 451d1cbfacd30282be6c18f7e08c6e1dd3a49561..518c0ae35af8f4e5c378b9ae74d5a1cc458da1bc 100644 |
--- a/chrome/common/pref_names.cc |
+++ b/chrome/common/pref_names.cc |
@@ -1220,12 +1220,6 @@ const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
// Whether Easy Unlock is enabled. |
const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
-// A dictionary in local state containing each user's Easy Unlock profile |
-// preferences, so they can be accessed outside of the user's profile. The value |
-// is a dictionary containing an entry for each user. Each user's entry mirrors |
-// their profile's Easy Unlock preferences. |
-const char kEasyUnlockLocalStateUserPrefs[] = "easy_unlock.user_prefs"; |
- |
// Preference storing Easy Unlock pairing data. |
const char kEasyUnlockPairing[] = "easy_unlock.pairing"; |
@@ -2267,6 +2261,11 @@ const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
// Whether Adding a new Person is enabled within the user manager. |
const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
+// Device identifier used by Easy Unlock stored in local state. This id will be |
+// combined with a user id, before being registered with the CryptAuth server, |
+// so it can't correlate users on the same device. |
+extern const char kEasyUnlockDeviceId[] = "easy_unlock.device_id"; |
+ |
// A dictionary that maps user id to hardlock state. |
const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
@@ -2274,6 +2273,12 @@ const char kEasyUnlockHardlockState[] = "easy_unlock.hardlock_state"; |
// Easy Sign-in for the user. |
const char kEasyUnlockLocalStateTpmKeys[] = "easy_unlock.public_tpm_keys"; |
+// A dictionary in local state containing each user's Easy Unlock profile |
+// preferences, so they can be accessed outside of the user's profile. The value |
+// is a dictionary containing an entry for each user. Each user's entry mirrors |
+// their profile's Easy Unlock preferences. |
+const char kEasyUnlockLocalStateUserPrefs[] = "easy_unlock.user_prefs"; |
+ |
// The beginning of time span when we count user's "Nope" for the password |
// bubble. |
const char kPasswordBubbleTimeStamp[] = "password_bubble.timestamp"; |