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

Unified Diff: tracing/tracing/extras/chrome/cc/tile.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/tile.html
diff --git a/tracing/tracing/extras/chrome/cc/tile.html b/tracing/tracing/extras/chrome/cc/tile.html
index f519ba9442df4d3d178678db39bdaf5320ce1b3d..a24e58483e29635199e658ce9e5698aa229017b9 100644
--- a/tracing/tracing/extras/chrome/cc/tile.html
+++ b/tracing/tracing/extras/chrome/cc/tile.html
@@ -69,7 +69,7 @@ tr.exportTo('tr.e.cc', function() {
getTypeForLayer: function(layer) {
var type = this.type_;
- if (type == tr.e.cc.tileTypes.unknown) {
+ if (type === tr.e.cc.tileTypes.unknown) {
if (this.contentsScale < layer.idealContentsScale)
type = tr.e.cc.tileTypes.extraLowRes;
else if (this.contentsScale > layer.idealContentsScale)

Powered by Google App Engine
This is Rietveld 408576698