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

Unified Diff: components/policy/core/common/configuration_policy_provider_test.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: components/policy/core/common/configuration_policy_provider_test.cc
diff --git a/components/policy/core/common/configuration_policy_provider_test.cc b/components/policy/core/common/configuration_policy_provider_test.cc
index 492ab02532929132fe8edd9cd14eff53c1def62b..93254d6ce8f77e0c2c2bcd00f3fb9ce1ce2bcba7 100644
--- a/components/policy/core/common/configuration_policy_provider_test.cc
+++ b/components/policy/core/common/configuration_policy_provider_test.cc
@@ -263,7 +263,7 @@ TEST_P(ConfigurationPolicyProviderTest, StringValue) {
}
TEST_P(ConfigurationPolicyProviderTest, BooleanValue) {
- base::FundamentalValue expected_value(true);
+ base::Value expected_value(true);
CheckValue(test_keys::kKeyBoolean,
expected_value,
base::Bind(&PolicyProviderTestHarness::InstallBooleanPolicy,
@@ -273,7 +273,7 @@ TEST_P(ConfigurationPolicyProviderTest, BooleanValue) {
}
TEST_P(ConfigurationPolicyProviderTest, IntegerValue) {
- base::FundamentalValue expected_value(42);
+ base::Value expected_value(42);
CheckValue(test_keys::kKeyInteger,
expected_value,
base::Bind(&PolicyProviderTestHarness::InstallIntegerPolicy,
« no previous file with comments | « components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc ('k') | components/policy/core/common/mac_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698