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

Unified Diff: tracing/tracing/model/location.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/location.html
diff --git a/tracing/tracing/model/location.html b/tracing/tracing/model/location.html
index 11d31eef7e4d9294218481cfb5dafa7a4afd9650..8654157172d2f4066b8ca2f1cc7c82aed6ada61d 100644
--- a/tracing/tracing/model/location.html
+++ b/tracing/tracing/model/location.html
@@ -41,7 +41,7 @@ tr.exportTo('tr.model', function() {
function Location(xWorld, yComponents) {
this.xWorld_ = xWorld;
this.yComponents_ = yComponents;
- };
+ }
/**
* Returns a new Location given by x and y coordinates with respect to
@@ -69,7 +69,7 @@ tr.exportTo('tr.model', function() {
elem = elem.parentElement;
}
- if (yComponents.length == 0)
+ if (yComponents.length === 0)
return;
return new Location(xWorld, yComponents);
}
@@ -96,7 +96,7 @@ tr.exportTo('tr.model', function() {
elem = elem.parentElement;
}
- if (yComponents.length == 0)
+ if (yComponents.length === 0)
return;
return new Location(xWorld, yComponents);
}

Powered by Google App Engine
This is Rietveld 408576698