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 f34b9fc258201e02554b59bebe55119e846f29ea..17c8617072c0f93e9f6a2272124a8c79fd72bf60 100644 |
--- a/tools/json_schema_compiler/test/simple_api_unittest.cc |
+++ b/tools/json_schema_compiler/test/simple_api_unittest.cc |
@@ -13,7 +13,7 @@ namespace { |
static scoped_ptr<base::DictionaryValue> CreateTestTypeDictionary() { |
scoped_ptr<base::DictionaryValue> value(new base::DictionaryValue()); |
value->SetWithoutPathExpansion("number", |
- base::Value::CreateDoubleValue(1.1)); |
+ new base::FundamentalValue(1.1)); |
value->SetWithoutPathExpansion("integer", |
base::Value::CreateIntegerValue(4)); |
value->SetWithoutPathExpansion("string", |