Index: components/policy/core/common/registry_dict_win.cc |
diff --git a/components/policy/core/common/registry_dict_win.cc b/components/policy/core/common/registry_dict_win.cc |
index 8e03fbc4f722f136739d4a4220f0746103c42914..0231159d31735fab363f83785bb7b91c1c9f43b2 100644 |
--- a/components/policy/core/common/registry_dict_win.cc |
+++ b/components/policy/core/common/registry_dict_win.cc |
@@ -71,7 +71,7 @@ scoped_ptr<base::Value> ConvertValue(const base::Value& value, |
(value.GetAsString(&string_value) && |
base::StringToInt(string_value, &int_value))) { |
return scoped_ptr<base::Value>( |
- base::Value::CreateBooleanValue(int_value != 0)); |
+ new base::FundamentalValue(int_value != 0)); |
} |
break; |
} |