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

Unified Diff: tracing/tracing/extras/tquery/filter_has_duration.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 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_has_duration.html
diff --git a/tracing/tracing/extras/tquery/filter_has_duration.html b/tracing/tracing/extras/tquery/filter_has_duration.html
index 45a33a3bee77b9cc08f69f7cbc6137605b246335..be465fc2afa91256c298fe10b0e066f2db76cac6 100644
--- a/tracing/tracing/extras/tquery/filter_has_duration.html
+++ b/tracing/tracing/extras/tquery/filter_has_duration.html
@@ -25,8 +25,7 @@ tr.exportTo('tr.e.tquery', function() {
__proto__: tr.e.tquery.Filter.prototype,
evaluate: function(context) {
- if (context.event.duration === undefined)
- return false;
+ if (context.event.duration === undefined) return false;
if (this.minValue !== undefined && this.maxValue !== undefined) {
return context.event.duration >= this.minValue &&
context.event.duration <= this.maxValue;
« no previous file with comments | « tracing/tracing/extras/tquery/filter_has_ancestor.html ('k') | tracing/tracing/extras/tquery/filter_is_top_level.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698