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

Unified Diff: tracing/tracing/extras/tquery/filter.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/tquery/filter.html
diff --git a/tracing/tracing/extras/tquery/filter.html b/tracing/tracing/extras/tquery/filter.html
index 99532e4dd75e71c8a026d5702bb8e4bf45a1d625..17cf644aa70e493faa5cce43038ebc27b76fc339 100644
--- a/tracing/tracing/extras/tquery/filter.html
+++ b/tracing/tracing/extras/tquery/filter.html
@@ -19,7 +19,7 @@ tr.exportTo('tr.e.tquery', function() {
// Shortcut: naked strings and regexps can be used to match against slice
// titles.
if (filterExpression instanceof String ||
- typeof(filterExpression) == 'string' ||
+ typeof(filterExpression) === 'string' ||
filterExpression instanceof RegExp) {
var filter = new tr.e.tquery.FilterHasTitle(filterExpression);
return filter;
« no previous file with comments | « tracing/tracing/extras/system_stats/system_stats_snapshot.html ('k') | tracing/tracing/importer/empty_importer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698