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

Unified Diff: tracing/tracing/model/thread.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: 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
Index: tracing/tracing/model/thread.html
diff --git a/tracing/tracing/model/thread.html b/tracing/tracing/model/thread.html
index a15ecc027350fd9dbe51736ecb6efa2ef5f9df2f..27c03e757f9a29ae756ec19adbe8e9618debfc87 100644
--- a/tracing/tracing/model/thread.html
+++ b/tracing/tracing/model/thread.html
@@ -191,7 +191,7 @@ tr.exportTo('tr.model', function() {
createSubSlices: function() {
this.sliceGroup.createSubSlices();
this.samples_ = this.parent.model.samples.filter(function(sample) {
- return sample.thread == this;
+ return sample.thread === this;
}, this);
},

Powered by Google App Engine
This is Rietveld 408576698