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

Unified Diff: chrome/browser/supervised_user/supervised_user_creation_policy_handler_unittest.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/supervised_user/supervised_user_creation_policy_handler_unittest.cc
diff --git a/chrome/browser/supervised_user/supervised_user_creation_policy_handler_unittest.cc b/chrome/browser/supervised_user/supervised_user_creation_policy_handler_unittest.cc
index 6915e3a193571f36f956fc4444a1be4fd09f745c..6172bc9052c4abdc2bc9a23eeffab74ff8025e66 100644
--- a/chrome/browser/supervised_user/supervised_user_creation_policy_handler_unittest.cc
+++ b/chrome/browser/supervised_user/supervised_user_creation_policy_handler_unittest.cc
@@ -18,8 +18,8 @@ class SupervisedUserCreationPolicyHandlerTest : public ::testing::Test {
protected:
void SetUpPolicyAndApply(const char* policy_name, bool value) {
policies_.Set(policy_name, POLICY_LEVEL_MANDATORY, POLICY_SCOPE_MACHINE,
- POLICY_SOURCE_PLATFORM,
- base::MakeUnique<base::FundamentalValue>(value), nullptr);
+ POLICY_SOURCE_PLATFORM, base::MakeUnique<base::Value>(value),
+ nullptr);
ApplyPolicySettings();
}

Powered by Google App Engine
This is Rietveld 408576698