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

Unified Diff: tracing/tracing/base/extension_registry_type_based.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/extension_registry_basic.html ('k') | tracing/tracing/base/iteration_helpers.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/extension_registry_type_based.html
diff --git a/tracing/tracing/base/extension_registry_type_based.html b/tracing/tracing/base/extension_registry_type_based.html
index 3f0e2c20eae6e1324f47ef8a5569bad4cbab66de..e45639e96c2353e3890ea33750bbfca166707237 100644
--- a/tracing/tracing/base/extension_registry_type_based.html
+++ b/tracing/tracing/base/extension_registry_type_based.html
@@ -108,7 +108,7 @@ tr.exportTo('tr.b', function() {
registry.unregister = function(constructor) {
var typeInfoIndex = -1;
for (var i = 0; i < registry.registeredTypeInfos_.length; i++) {
- if (registry.registeredTypeInfos_[i].constructor == constructor) {
+ if (registry.registeredTypeInfos_[i].constructor === constructor) {
typeInfoIndex = i;
break;
}
« no previous file with comments | « tracing/tracing/base/extension_registry_basic.html ('k') | tracing/tracing/base/iteration_helpers.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698