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

Unified Diff: tracing/tracing/extras/chrome/chrome_auditor.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: Fix test 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/chrome/chrome_auditor.html
diff --git a/tracing/tracing/extras/chrome/chrome_auditor.html b/tracing/tracing/extras/chrome/chrome_auditor.html
index 2d6658bbfc26687c7f6b007e550790d45384df03..edadb92a07c2a84f867f271fdf3c543d89ab94e6 100644
--- a/tracing/tracing/extras/chrome/chrome_auditor.html
+++ b/tracing/tracing/extras/chrome/chrome_auditor.html
@@ -46,14 +46,14 @@ tr.exportTo('tr.e.audits', function() {
__proto__: Auditor.prototype,
runAnnotate: function() {
- if (!this.modelHelper)
- return;
+ if (!this.modelHelper) return;
for (var pid in this.modelHelper.rendererHelpers) {
var rendererHelper = this.modelHelper.rendererHelpers[pid];
- if (rendererHelper.isChromeTracingUI)
+ if (rendererHelper.isChromeTracingUI) {
rendererHelper.process.important = false;
+ }
}
},
@@ -66,8 +66,7 @@ tr.exportTo('tr.e.audits', function() {
},
runAudit: function() {
- if (!this.modelHelper)
- return;
+ if (!this.modelHelper) return;
this.model.replacePIDRefsInPatchups(
tr.model.BROWSER_PROCESS_PID_REF,

Powered by Google App Engine
This is Rietveld 408576698