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

Unified Diff: tracing/tracing/extras/importer/trace_code_map.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/trace_code_map.html
diff --git a/tracing/tracing/extras/importer/trace_code_map.html b/tracing/tracing/extras/importer/trace_code_map.html
index dbdfecbd3e4febfe445e539eff183edfa9463f36..c677d2f5c8672d60285031167e83fea8c18b11f6 100644
--- a/tracing/tracing/extras/importer/trace_code_map.html
+++ b/tracing/tracing/extras/importer/trace_code_map.html
@@ -47,7 +47,7 @@ tr.exportTo('tr.e.importer', function() {
},
getAddress_: function(addressHex) {
- // 13 hex digits == 52 bits, double mantissa fits 53 bits.
+ // 13 hex digits === 52 bits, double mantissa fits 53 bits.
var bankSizeHexDigits = 13;
addressHex = addressHex.slice(2); // cut 0x prefix.
return parseInt(addressHex.slice(-bankSizeHexDigits), 16);
@@ -56,7 +56,7 @@ tr.exportTo('tr.e.importer', function() {
getBank_: function(addressHex) {
addressHex = addressHex.slice(2); // cut 0x prefix.
- // 13 hex digits == 52 bits, double mantissa fits 53 bits.
+ // 13 hex digits === 52 bits, double mantissa fits 53 bits.
var bankSizeHexDigits = 13;
var maxHexDigits = 16;
var bankName = addressHex.slice(-maxHexDigits, -bankSizeHexDigits);
« no previous file with comments | « tracing/tracing/extras/importer/trace2html_importer.html ('k') | tracing/tracing/extras/importer/trace_event_importer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698