Index: base/debug/trace_event_impl.cc |
diff --git a/base/debug/trace_event_impl.cc b/base/debug/trace_event_impl.cc |
index 50bf342c4d8ea0431b00ea15a6b4274df3c2d16d..f9ff510c575356369d8af2edd8c1ad07ad29807d 100644 |
--- a/base/debug/trace_event_impl.cc |
+++ b/base/debug/trace_event_impl.cc |
@@ -662,7 +662,7 @@ void TraceEvent::AppendValueAsJSON(unsigned char type, |
break; |
case TRACE_VALUE_TYPE_STRING: |
case TRACE_VALUE_TYPE_COPY_STRING: |
- JsonDoubleQuote(value.as_string ? value.as_string : "NULL", true, out); |
+ EscapeJSONString(value.as_string ? value.as_string : "NULL", true, out); |
break; |
default: |
NOTREACHED() << "Don't know how to print this value"; |