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

Unified Diff: components/cryptauth/cryptauth_device_manager_unittest.cc

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698