Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: tracing/tracing/base/range_utils.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tracing/tracing/base/range.html ('k') | tracing/tracing/base/rect.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « tracing/tracing/base/range.html ('k') | tracing/tracing/base/rect.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698