| Index: components/cryptauth/cryptauth_device_manager_unittest.cc
|
| diff --git a/components/cryptauth/cryptauth_device_manager_unittest.cc b/components/cryptauth/cryptauth_device_manager_unittest.cc
|
| index 77a051d0d295b8bf213fc10999dceb9464b50c85..f895e2086963e050e3111a86f146c0ac1793b1bf 100644
|
| --- a/components/cryptauth/cryptauth_device_manager_unittest.cc
|
| +++ b/components/cryptauth/cryptauth_device_manager_unittest.cc
|
| @@ -178,12 +178,12 @@ class CryptAuthDeviceManagerTest
|
| CryptAuthDeviceManager::RegisterPrefs(pref_service_.registry());
|
| pref_service_.SetUserPref(
|
| prefs::kCryptAuthDeviceSyncIsRecoveringFromFailure,
|
| - new base::FundamentalValue(false));
|
| + new base::Value(false));
|
| pref_service_.SetUserPref(prefs::kCryptAuthDeviceSyncLastSyncTimeSeconds,
|
| - new base::FundamentalValue(kLastSyncTimeSeconds));
|
| + new base::Value(kLastSyncTimeSeconds));
|
| pref_service_.SetUserPref(
|
| prefs::kCryptAuthDeviceSyncReason,
|
| - new base::FundamentalValue(cryptauth::INVOCATION_REASON_UNKNOWN));
|
| + new base::Value(cryptauth::INVOCATION_REASON_UNKNOWN));
|
|
|
| std::unique_ptr<base::DictionaryValue> unlock_key_dictionary(
|
| new base::DictionaryValue());
|
|
|