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

Unified Diff: tracing/tracing/model/async_slice.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/metrics/v8/utils.html ('k') | tracing/tracing/model/counter.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/async_slice.html
diff --git a/tracing/tracing/model/async_slice.html b/tracing/tracing/model/async_slice.html
index f3a4dfafeaf00646894e26bd87760e1723c3b52a..2eb6c57184c888cd48a02d0ba5ee3bda090b9964 100644
--- a/tracing/tracing/model/async_slice.html
+++ b/tracing/tracing/model/async_slice.html
@@ -116,7 +116,7 @@ tr.exportTo('tr.model', function() {
return undefined;
for (var i = 0; i < this.subSlices.length; i++) {
- if (this.subSlices[i].title == targetTitle)
+ if (this.subSlices[i].title === targetTitle)
return this.subSlices[i];
var slice = this.subSlices[i].findDescendentSlice(targetTitle);
if (slice) return slice;
« no previous file with comments | « tracing/tracing/metrics/v8/utils.html ('k') | tracing/tracing/model/counter.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698