| Index: tracing/tracing/base/range_utils.html
|
| diff --git a/tracing/tracing/base/range_utils.html b/tracing/tracing/base/range_utils.html
|
| index bc6810bc5d3ff324213451eb0584ab31c54abb51..73dc67ae2d5a6c54568b4b1859b5b5dbbae088c7 100644
|
| --- a/tracing/tracing/base/range_utils.html
|
| +++ b/tracing/tracing/base/range_utils.html
|
| @@ -29,7 +29,7 @@ tr.exportTo('tr.b', function() {
|
|
|
| if (remainingEvents.length <= 1) {
|
| var merged = [];
|
| - if (remainingEvents.length == 1) {
|
| + if (remainingEvents.length === 1) {
|
| merged.push(mergeFunction(remainingEvents));
|
| }
|
| return merged;
|
| @@ -46,14 +46,14 @@ tr.exportTo('tr.b', function() {
|
| }
|
|
|
| function flushCurrentMergeBuffer() {
|
| - if (currentMergeBuffer.length == 0)
|
| + if (currentMergeBuffer.length === 0)
|
| return;
|
|
|
| mergedEvents.push(mergeFunction(currentMergeBuffer));
|
| currentMergeBuffer = [];
|
|
|
| // Refill merge buffer if needed.
|
| - if (remainingEvents.length != 0)
|
| + if (remainingEvents.length !== 0)
|
| beginMerging();
|
| }
|
|
|
|
|