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

Unified Diff: tracing/tracing/importer/find_load_expectations.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/importer/find_load_expectations.html
diff --git a/tracing/tracing/importer/find_load_expectations.html b/tracing/tracing/importer/find_load_expectations.html
index e3e694118d673e1bfcd6bf68876c49718873d135..8bfb90d2ceddf547c60a3964160cc3991367265f 100644
--- a/tracing/tracing/importer/find_load_expectations.html
+++ b/tracing/tracing/importer/find_load_expectations.html
@@ -22,8 +22,9 @@ tr.exportTo('tr.importer', function() {
var events = [];
for (var event of modelHelper.model.getDescendantEvents()) {
if ((event.title === NAVIGATION_START) ||
- (event.title === FIRST_CONTENTFUL_PAINT_TITLE))
+ (event.title === FIRST_CONTENTFUL_PAINT_TITLE)) {
events.push(event);
+ }
}
events.sort(tr.importer.compareEvents);
« no previous file with comments | « tracing/tracing/importer/find_input_expectations.html ('k') | tracing/tracing/importer/find_startup_expectations.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698