Index: chrome/browser/chromeos/gdata/gdata_operations.cc |
diff --git a/chrome/browser/chromeos/gdata/gdata_operations.cc b/chrome/browser/chromeos/gdata/gdata_operations.cc |
index 73df11678f5e940d54a97ed5fc98badcd1ad2232..0697ab2d62a1e3a2f823bba33b34fb79efad824b 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_operations.cc |
+++ b/chrome/browser/chromeos/gdata/gdata_operations.cc |
@@ -413,7 +413,7 @@ base::Value* GetDataOperation::ParseResponse(const std::string& data) { |
int error_code = -1; |
std::string error_message; |
scoped_ptr<base::Value> root_value(base::JSONReader::ReadAndReturnError( |
- data, false, &error_code, &error_message)); |
+ data, base::JSON_PARSE_RFC, &error_code, &error_message)); |
if (!root_value.get()) { |
LOG(ERROR) << "Error while parsing entry response: " |
<< error_message |