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

Unified Diff: components/policy/core/common/cloud/user_cloud_policy_store_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/policy/core/common/cloud/user_cloud_policy_store_unittest.cc
diff --git a/components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc b/components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc
index 7a136086447138201cc68955c6a068d67d8e4f58..52fd7c2e62a40f659f2c585673bca2fa4b36b704 100644
--- a/components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc
+++ b/components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc
@@ -101,7 +101,7 @@ class UserCloudPolicyStoreTest : public testing::Test {
const PolicyMap::Entry* entry =
store->policy_map().Get(key::kPasswordManagerEnabled);
ASSERT_TRUE(entry);
- EXPECT_TRUE(base::FundamentalValue(true).Equals(entry->value.get()));
+ EXPECT_TRUE(base::Value(true).Equals(entry->value.get()));
ASSERT_TRUE(store->policy_map().Get(key::kURLBlacklist));
}

Powered by Google App Engine
This is Rietveld 408576698