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

Unified Diff: tracing/tracing/extras/importer/etw/process_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/process_parser.html
diff --git a/tracing/tracing/extras/importer/etw/process_parser.html b/tracing/tracing/extras/importer/etw/process_parser.html
index 51f1e9b51aa5a965900c46c133ff5a4b30620069..040d24d3bf75b55b640aea5441c5b5d11bcddf08 100644
--- a/tracing/tracing/extras/importer/etw/process_parser.html
+++ b/tracing/tracing/extras/importer/etw/process_parser.html
@@ -63,7 +63,7 @@ tr.exportTo('tr.e.importer.etw', function() {
throw new Error('Incompatible Process event version.');
var pageDirectoryBase;
- if (header.version == 1)
+ if (header.version === 1)
pageDirectoryBase = decoder.decodeUInteger(header.is64);
var uniqueProcessKey;
@@ -106,7 +106,7 @@ tr.exportTo('tr.e.importer.etw', function() {
}
var exitTime;
- if (header.version == 5 && header.opcode == kProcessDefunctOpcode)
+ if (header.version === 5 && header.opcode === kProcessDefunctOpcode)
exitTime = decoder.decodeUInt64ToString();
return {
« no previous file with comments | « tracing/tracing/extras/importer/etw/eventtrace_parser.html ('k') | tracing/tracing/extras/importer/etw/thread_parser.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698