Index: base/test/values_test_util.h |
diff --git a/base/test/values_test_util.h b/base/test/values_test_util.h |
index 86d91c3868f0cca38b93f6381756eb0689c9903c..b14ce84f02f72e8b67563db2ec5a73e2ff64ba80 100644 |
--- a/base/test/values_test_util.h |
+++ b/base/test/values_test_util.h |
@@ -50,6 +50,12 @@ namespace test { |
// failure and returns the Null Value (but never a NULL pointer). |
scoped_ptr<Value> ParseJson(base::StringPiece json); |
+// Parses |json| allowing trailing commas and replacing single quotes with |
+// double quotes for test readability. Returns an empty dictionary if the json |
Jeffrey Yasskin
2014/03/04 01:41:48
Mention the EXPECT failure here.
scheib
2014/03/04 15:34:31
Done.
|
+// fails to parse. |
+scoped_ptr<DictionaryValue> ParseJsonDictionaryWithSingleQuotes( |
+ base::StringPiece json); |
+ |
} // namespace test |
} // namespace base |