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

Unified Diff: tracing/tracing/extras/importer/linux_perf/i915_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/linux_perf/i915_parser.html
diff --git a/tracing/tracing/extras/importer/linux_perf/i915_parser.html b/tracing/tracing/extras/importer/linux_perf/i915_parser.html
index 1102cead6854372f21d89e53c736aa13ccf5d5cd..e1c6334a28af6b56741698eb91a2fdfc094a6e26 100644
--- a/tracing/tracing/extras/importer/linux_perf/i915_parser.html
+++ b/tracing/tracing/extras/importer/linux_perf/i915_parser.html
@@ -337,7 +337,7 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
var plane = parseInt(event[1]);
var obj = event[2];
- if (eventName == 'i915_flip_request')
+ if (eventName === 'i915_flip_request')
this.i915FlipOpenSlice(ts, obj, plane);
else
this.i915FlipCloseSlice(ts,

Powered by Google App Engine
This is Rietveld 408576698