| 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/cryptauth/pref_names.h" | 5 #include "components/cryptauth/pref_names.h" |
| 6 | 6 |
| 7 namespace proximity_auth { | 7 namespace cryptauth { |
| 8 namespace prefs { | 8 namespace prefs { |
| 9 | 9 |
| 10 // Whether the system is scheduling device_syncs more aggressively to recover | 10 // Whether the system is scheduling device_syncs more aggressively to recover |
| 11 // from the previous device_sync failure. | 11 // from the previous device_sync failure. |
| 12 const char kCryptAuthDeviceSyncIsRecoveringFromFailure[] = | 12 const char kCryptAuthDeviceSyncIsRecoveringFromFailure[] = |
| 13 "cryptauth.device_sync.is_recovering_from_failure"; | 13 "cryptauth.device_sync.is_recovering_from_failure"; |
| 14 | 14 |
| 15 // The timestamp of the last successful CryptAuth device_sync in seconds. | 15 // The timestamp of the last successful CryptAuth device_sync in seconds. |
| 16 const char kCryptAuthDeviceSyncLastSyncTimeSeconds[] = | 16 const char kCryptAuthDeviceSyncLastSyncTimeSeconds[] = |
| 17 "cryptauth.device_sync.last_device_sync_time_seconds"; | 17 "cryptauth.device_sync.last_device_sync_time_seconds"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 47 | 47 |
| 48 // The private key of the user and device enrolled with CryptAuth. | 48 // The private key of the user and device enrolled with CryptAuth. |
| 49 extern const char kCryptAuthEnrollmentUserPrivateKey[] = | 49 extern const char kCryptAuthEnrollmentUserPrivateKey[] = |
| 50 "cryptauth.enrollment.user_private_key"; | 50 "cryptauth.enrollment.user_private_key"; |
| 51 | 51 |
| 52 // The GCM registration id used for receiving push messages from CryptAuth. | 52 // The GCM registration id used for receiving push messages from CryptAuth. |
| 53 extern const char kCryptAuthGCMRegistrationId[] = | 53 extern const char kCryptAuthGCMRegistrationId[] = |
| 54 "cryptauth.gcm_registration_id"; | 54 "cryptauth.gcm_registration_id"; |
| 55 | 55 |
| 56 } // namespace prefs | 56 } // namespace prefs |
| 57 } // namespace proximity_auth | 57 } // namespace cryptauth |
| OLD | NEW |