| 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 9c79c7a3bd3c79ff422861043ff56f3cebcd474d..9609485636c3452b10fb26964f830796a4d53d38 100644
|
| --- a/tracing/tracing/base/in_memory_trace_stream.html
|
| +++ b/tracing/tracing/base/in_memory_trace_stream.html
|
| @@ -40,6 +40,15 @@ tr.exportTo('tr.b', function() {
|
| return this.header_;
|
| }
|
|
|
| + get data() {
|
| + return this.data_;
|
| + }
|
| +
|
| + toString() {
|
| + this.rewind();
|
| + return this.readNumBytes(Number.MAX_VALUE);
|
| + }
|
| +
|
| readUntilDelimiter(delim) {
|
| if (delim.length !== 1) {
|
| throw new Error('delim must be exactly one character');
|
|
|