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

Unified Diff: tracing/tracing/extras/importer/etw/eventtrace_parser.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/extras/importer/etw/eventtrace_parser.html
diff --git a/tracing/tracing/extras/importer/etw/eventtrace_parser.html b/tracing/tracing/extras/importer/etw/eventtrace_parser.html
index 14c1dcf5c1b33481519afdeb7da15d3022268ec7..8496ec958b7c59481a8107fb914860c458bf410e 100644
--- a/tracing/tracing/extras/importer/etw/eventtrace_parser.html
+++ b/tracing/tracing/extras/importer/etw/eventtrace_parser.html
@@ -37,7 +37,7 @@ tr.exportTo('tr.e.importer.etw', function() {
__proto__: Parser.prototype,
decodeFields: function(header, decoder) {
- if (header.version != 2)
+ if (header.version !== 2)
throw new Error('Incompatible EventTrace event version.');
var bufferSize = decoder.decodeUInt32();
« no previous file with comments | « tracing/tracing/extras/importer/etw/etw_importer.html ('k') | tracing/tracing/extras/importer/etw/process_parser.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698