| Index: tracing/tracing/base/in_memory_trace_stream.html
|
| diff --git a/tracing/tracing/base/in_memory_trace_stream.html b/tracing/tracing/base/in_memory_trace_stream.html
|
| index d9377620030aa3373d71b9e256cc2d66dc994af2..69b02015c44076478f55ac78944ab524138d53f4 100644
|
| --- a/tracing/tracing/base/in_memory_trace_stream.html
|
| +++ b/tracing/tracing/base/in_memory_trace_stream.html
|
| @@ -93,6 +93,10 @@ tr.exportTo('tr.b', function() {
|
| }
|
|
|
| static uint8ArrayToString_(arr) {
|
| + if (typeof TextDecoder !== 'undefined') {
|
| + const decoder = new TextDecoder('utf-8');
|
| + return decoder.decode(arr);
|
| + }
|
| const c = [];
|
| for (let i = 0; i < arr.length; i += MAX_FUNCTION_ARGS_COUNT) {
|
| c.push(String.fromCharCode(...arr.subarray(
|
|
|