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

Unified Diff: tracing/tracing/ui/analysis/multi_object_sub_view.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/ui/analysis/multi_object_sub_view.html
diff --git a/tracing/tracing/ui/analysis/multi_object_sub_view.html b/tracing/tracing/ui/analysis/multi_object_sub_view.html
index 2ca68cea6826aff93679d299e8814af4334f9517..d95ab8ba29b930da4a7d0d59aef105c5bbf4a579 100644
--- a/tracing/tracing/ui/analysis/multi_object_sub_view.html
+++ b/tracing/tracing/ui/analysis/multi_object_sub_view.html
@@ -69,7 +69,7 @@ Polymer({
marginLeft: '4px',
marginRight: '4px'
}));
- if (event.deletionTs != Number.MAX_VALUE) {
+ if (event.deletionTs !== Number.MAX_VALUE) {
Polymer.dom(spanEl).appendChild(tr.v.ui.createScalarSpan(
event.deletionTs, timeSpanConfig));
}

Powered by Google App Engine
This is Rietveld 408576698