Index: tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html |
diff --git a/tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html b/tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html |
index 497159006928562f208f8300f3ccafc68fc3ce3c..3df73b5d39bd69e802ddfb6478621b73a477236c 100644 |
--- a/tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html |
+++ b/tracing/tracing/extras/chrome/cc/layer_tree_host_impl.html |
@@ -83,9 +83,9 @@ tr.exportTo('tr.e.cc', function() { |
}, |
getTree: function(whichTree) { |
- if (whichTree == constants.ACTIVE_TREE) |
+ if (whichTree === constants.ACTIVE_TREE) |
return this.activeTree; |
- if (whichTree == constants.PENDING_TREE) |
+ if (whichTree === constants.PENDING_TREE) |
return this.pendingTree; |
throw new Exception('Unknown tree type + ' + whichTree); |
}, |