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

Unified Diff: tracing/tracing/base/extension_registry_basic.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
Index: tracing/tracing/base/extension_registry_basic.html
diff --git a/tracing/tracing/base/extension_registry_basic.html b/tracing/tracing/base/extension_registry_basic.html
index d21d3941f5b9e577b9a38b5ce91b8688d18ef47c..7547e13ea8a192ad6b3ac50c8f55d789b9f2c852 100644
--- a/tracing/tracing/base/extension_registry_basic.html
+++ b/tracing/tracing/base/extension_registry_basic.html
@@ -65,7 +65,7 @@ tr.exportTo('tr.b', function() {
registry.findIndexOfRegisteredConstructor = function(constructor) {
for (var i = 0; i < registry.registeredTypeInfos_.length; i++)
- if (registry.registeredTypeInfos_[i].constructor == constructor)
+ if (registry.registeredTypeInfos_[i].constructor === constructor)
return i;
return undefined;
};
« no previous file with comments | « tracing/tracing/base/extension_registry.html ('k') | tracing/tracing/base/extension_registry_type_based.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698