summaryrefslogtreecommitdiff
path: root/chromium/third_party/catapult/tracing/tracing/base/range_utils.html
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/tracing/tracing/base/range_utils.html')
-rw-r--r--chromium/third_party/catapult/tracing/tracing/base/range_utils.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/catapult/tracing/tracing/base/range_utils.html b/chromium/third_party/catapult/tracing/tracing/base/range_utils.html
index bc6810bc5d3..73dc67ae2d5 100644
--- a/chromium/third_party/catapult/tracing/tracing/base/range_utils.html
+++ b/chromium/third_party/catapult/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();
}