Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: tools/json_schema_compiler/test/simple_api_unittest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b79e3bc607ad3f5bfe0773a88c332099dcadcace..29d76373c8a18e15fbe17a8167e5f9be9019bfb9 100644
--- a/tools/json_schema_compiler/test/simple_api_unittest.cc
+++ b/tools/json_schema_compiler/test/simple_api_unittest.cc
@@ -14,7 +14,7 @@ static std::unique_ptr<base::DictionaryValue> CreateTestTypeDictionary() {
std::unique_ptr<base::DictionaryValue> value(new base::DictionaryValue());
value->SetWithoutPathExpansion("number", new base::Value(1.1));
value->SetWithoutPathExpansion("integer", new base::Value(4));
- value->SetWithoutPathExpansion("string", new base::StringValue("bling"));
+ value->SetWithoutPathExpansion("string", new base::Value("bling"));
value->SetWithoutPathExpansion("boolean", new base::Value(true));
return value;
}
« no previous file with comments | « tools/json_schema_compiler/test/error_generation_unittest.cc ('k') | tools/win/DebugVisualizers/chrome.natvis » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698