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

Unified Diff: tracing/tracing/model/helpers/chrome_renderer_helper.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: 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/model/helpers/chrome_renderer_helper.html
diff --git a/tracing/tracing/model/helpers/chrome_renderer_helper.html b/tracing/tracing/model/helpers/chrome_renderer_helper.html
index 15f8538a1c7cf8c6a8f8b89a36a02e545745bd67..d12c303f8012f221cbb9d5e4e1c36f30b1ca030b 100644
--- a/tracing/tracing/model/helpers/chrome_renderer_helper.html
+++ b/tracing/tracing/model/helpers/chrome_renderer_helper.html
@@ -119,7 +119,7 @@ tr.exportTo('tr.model.helpers', function() {
try {
var v8RuntimeObject = JSON.parse(v8Runtime);
for (var runtimeCall in v8RuntimeObject) {
- if (v8RuntimeObject[runtimeCall].length == 2) {
+ if (v8RuntimeObject[runtimeCall].length === 2) {
if (breakdownMap['v8_runtime'].events[runtimeCall] ===
undefined) {
breakdownMap['v8_runtime'].events[runtimeCall] = 0;

Powered by Google App Engine
This is Rietveld 408576698