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

Unified Diff: chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc
diff --git a/chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc b/chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc
index 363101355c2b4bf0a21943be38ccbf4069ed572a..3d3f30839ebaf43e273bd50eb50cdb0efea20ead 100644
--- a/chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc
+++ b/chrome/browser/signin/easy_unlock_service_unittest_chromeos.cc
@@ -235,8 +235,8 @@ class EasyUnlockServiceTest : public testing::Test {
}
void SetEasyUnlockAllowedPolicy(bool allowed) {
- profile_->GetTestingPrefService()->SetManagedPref(
- prefs::kEasyUnlockAllowed, new base::FundamentalValue(allowed));
+ profile_->GetTestingPrefService()->SetManagedPref(prefs::kEasyUnlockAllowed,
+ new base::Value(allowed));
}
void set_is_bluetooth_adapter_present(bool is_present) {

Powered by Google App Engine
This is Rietveld 408576698