| Index: chrome/utility/chrome_content_utility_client.cc
|
| diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
|
| index b479b479c2d352f2bbc55046ce0fe6745b860347..ade6bd76bedf42fb46b1643858833589297c2852 100644
|
| --- a/chrome/utility/chrome_content_utility_client.cc
|
| +++ b/chrome/utility/chrome_content_utility_client.cc
|
| @@ -357,8 +357,8 @@ bool ChromeContentUtilityClient::RenderPDFToWinMetafile(
|
| void ChromeContentUtilityClient::OnParseJSON(const std::string& json) {
|
| int error_code;
|
| std::string error;
|
| - Value* value =
|
| - base::JSONReader::ReadAndReturnError(json, false, &error_code, &error);
|
| + Value* value = base::JSONReader::ReadAndReturnError(
|
| + json, base::JSON_PARSE_RFC, &error_code, &error);
|
| if (value) {
|
| ListValue wrapper;
|
| wrapper.Append(value);
|
|
|