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

Unified Diff: tracing/tracing/metrics/v8/utils.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/metrics/v8/utils.html
diff --git a/tracing/tracing/metrics/v8/utils.html b/tracing/tracing/metrics/v8/utils.html
index 0bf39baf56b7d4ccd7db724a1acd7668b3bfa3db..36e2b70152a91f6dfa2b80e2b8bf01be8dbcb704 100644
--- a/tracing/tracing/metrics/v8/utils.html
+++ b/tracing/tracing/metrics/v8/utils.html
@@ -81,7 +81,7 @@ tr.exportTo('tr.metrics.v8.utils', function() {
// Low memory notification is handled specially because it contains
// several full mark compact events.
return event.title && event.title.startsWith(GC_EVENT_PREFIX) &&
- event.title != LOW_MEMORY_EVENT;
+ event.title !== LOW_MEMORY_EVENT;
}
function isTopGarbageCollectionEvent(event) {

Powered by Google App Engine
This is Rietveld 408576698