Index: tools/json_schema_compiler/test/simple_api_unittest.cc |
diff --git a/tools/json_schema_compiler/test/simple_api_unittest.cc b/tools/json_schema_compiler/test/simple_api_unittest.cc |
index 6802febbbcdd9ba7e988c89a20fb9b32e633b737..0cf3fb8f4a766125329ddcca2726234ea5489b9d 100644 |
--- a/tools/json_schema_compiler/test/simple_api_unittest.cc |
+++ b/tools/json_schema_compiler/test/simple_api_unittest.cc |
@@ -17,8 +17,7 @@ static scoped_ptr<base::DictionaryValue> CreateTestTypeDictionary() { |
value->SetWithoutPathExpansion("integer", new base::FundamentalValue(4)); |
value->SetWithoutPathExpansion("string", |
base::Value::CreateStringValue("bling")); |
- value->SetWithoutPathExpansion("boolean", |
- base::Value::CreateBooleanValue(true)); |
+ value->SetWithoutPathExpansion("boolean", new base::FundamentalValue(true)); |
return value.Pass(); |
} |