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

Unified Diff: tracing/tracing/extras/chrome/cc/picture.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/extras/chrome/cc/picture.html
diff --git a/tracing/tracing/extras/chrome/cc/picture.html b/tracing/tracing/extras/chrome/cc/picture.html
index c366488d41c8ee56d26e134f01af79a14e3d3fda..ca25a118528a089e03e2745110be70b932a26680 100644
--- a/tracing/tracing/extras/chrome/cc/picture.html
+++ b/tracing/tracing/extras/chrome/cc/picture.html
@@ -100,7 +100,7 @@ tr.exportTo('tr.e.cc', function() {
opTimings[iteration] = this.getOpTimings();
if (!opTimings[iteration] || !opTimings[iteration].cmd_times)
return ops;
- if (opTimings[iteration].cmd_times.length != ops.length)
+ if (opTimings[iteration].cmd_times.length !== ops.length)
return ops;
}

Powered by Google App Engine
This is Rietveld 408576698