Index: chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc |
diff --git a/chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc b/chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc |
index cd60671deb7f22605714d9f0112466b3ef3a5ef2..f0861c6b31f7e85dd43020678c7c7b39d05611c2 100644 |
--- a/chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc |
+++ b/chrome/browser/profiles/incognito_mode_policy_handler_unittest.cc |
@@ -33,10 +33,11 @@ class IncognitoModePolicyHandlerTest |
int availability) { |
PolicyMap policy; |
if (incognito_enabled != INCOGNITO_ENABLED_UNKNOWN) { |
- policy.Set(key::kIncognitoEnabled, POLICY_LEVEL_MANDATORY, |
+ policy.Set(key::kIncognitoEnabled, |
+ POLICY_LEVEL_MANDATORY, |
POLICY_SCOPE_USER, |
- base::Value::CreateBooleanValue( |
- incognito_enabled == INCOGNITO_ENABLED_TRUE), |
+ new base::FundamentalValue(incognito_enabled == |
+ INCOGNITO_ENABLED_TRUE), |
NULL); |
} |
if (availability >= 0) { |