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

Unified Diff: tracing/tracing/extras/importer/linux_perf/gesture_parser.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/extras/importer/linux_perf/gesture_parser.html
diff --git a/tracing/tracing/extras/importer/linux_perf/gesture_parser.html b/tracing/tracing/extras/importer/linux_perf/gesture_parser.html
index f2c3924867b26f8f8213c41ee574b68a56aa5c41..42d2d7ebecf28d0f6f88d1b06a2977ea167e8f30 100644
--- a/tracing/tracing/extras/importer/linux_perf/gesture_parser.html
+++ b/tracing/tracing/extras/importer/linux_perf/gesture_parser.html
@@ -50,7 +50,7 @@ tr.exportTo('tr.e.importer.linux_perf', function() {
var thread = this.importer.getOrCreatePseudoThread('gesture').thread;
if (thread.sliceGroup.openSliceCount) {
var slice = thread.sliceGroup.mostRecentlyOpenedPartialSlice;
- if (slice.title != title) {
+ if (slice.title !== title) {
this.importer.model.importWarning({
type: 'title_match_error',
message: 'Titles do not match. Title is ' +

Powered by Google App Engine
This is Rietveld 408576698