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

Unified Diff: tracing/tracing/importer/importer.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
« no previous file with comments | « tracing/tracing/importer/import.html ('k') | tracing/tracing/importer/proto_expectation.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/importer/importer.html
diff --git a/tracing/tracing/importer/importer.html b/tracing/tracing/importer/importer.html
index 010e6104123434f00e59fc6146dca634388928a3..f809ae98d2c3ce571bd3ff92b62319a6c897d320 100644
--- a/tracing/tracing/importer/importer.html
+++ b/tracing/tracing/importer/importer.html
@@ -73,8 +73,9 @@ tr.exportTo('tr.importer', function() {
var typeInfo = Importer.findTypeInfoMatching(function(ti) {
return ti.constructor.canImport(eventData);
});
- if (typeInfo)
+ if (typeInfo) {
return typeInfo.constructor;
+ }
return undefined;
};
« no previous file with comments | « tracing/tracing/importer/import.html ('k') | tracing/tracing/importer/proto_expectation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698