diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 06:37:40 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 06:37:40 +0000 |
commit | 012d1317d2983f3b821632e1008b53cfda135647 (patch) | |
tree | 9ee44e45bac7cd4d5cbf622544b43eef9f3be078 /tools/json_schema_compiler/test/simple_api_unittest.cc | |
parent | 6e9bfe1e87c80238666d32878e18322e108d8700 (diff) | |
download | chromium_src-012d1317d2983f3b821632e1008b53cfda135647.zip chromium_src-012d1317d2983f3b821632e1008b53cfda135647.tar.gz chromium_src-012d1317d2983f3b821632e1008b53cfda135647.tar.bz2 |
Eliminate CreateBooleanValue from test files
BUG=160586
Review URL: https://codereview.chromium.org/397793002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283665 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/json_schema_compiler/test/simple_api_unittest.cc')
-rw-r--r-- | tools/json_schema_compiler/test/simple_api_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/json_schema_compiler/test/simple_api_unittest.cc b/tools/json_schema_compiler/test/simple_api_unittest.cc index 6802feb..0cf3fb8 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(); } |