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

Unified Diff: tracing/tracing/base/range.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/quad.html ('k') | tracing/tracing/base/range_utils.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/range.html
diff --git a/tracing/tracing/base/range.html b/tracing/tracing/base/range.html
index 1818d456b955746ac844e11d424a7265590af6dd..593d85f13b5a80d81a7c19d6c4088ff7dd2da16e 100644
--- a/tracing/tracing/base/range.html
+++ b/tracing/tracing/base/range.html
@@ -103,7 +103,7 @@ tr.exportTo('tr.b', function() {
equals: function(that) {
if (this.isEmpty && that.isEmpty)
return true;
- if (this.isEmpty != that.isEmpty)
+ if (this.isEmpty !== that.isEmpty)
return false;
return (tr.b.approximately(this.min, that.min) &&
tr.b.approximately(this.max, that.max));
« no previous file with comments | « tracing/tracing/base/quad.html ('k') | tracing/tracing/base/range_utils.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698