Index: base/json_writer.cc |
diff --git a/base/json_writer.cc b/base/json_writer.cc |
index 4782eb55bda957bbd175403d5fbb427e98b57f42..0da29259ef3b746dfe0ea86233b0bb2b2ae3bd99 100644 |
--- a/base/json_writer.cc |
+++ b/base/json_writer.cc |
@@ -58,7 +58,7 @@ void JSONWriter::BuildJSONString(const Value* const node, int depth) { |
double value; |
bool result = node->GetAsReal(&value); |
DCHECK(result); |
- std::string real = base::DoubleToString(value, base::LOCALE_INDEPENDENT); |
+ std::string real = DoubleToString(value); |
// Ensure that the number has a .0 if there's no decimal or 'e'. This |
// makes sure that when we read the JSON back, it's interpreted as a |
// real rather than an int. |