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

Unified Diff: tracing/tracing/extras/chrome/chrome_auditor.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/chrome/chrome_auditor.html
diff --git a/tracing/tracing/extras/chrome/chrome_auditor.html b/tracing/tracing/extras/chrome/chrome_auditor.html
index 44b4208d9e1908c9007cbc74654d5059d546f676..068044b8fff7915b619449d1c3f965e00c15f903 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,
« no previous file with comments | « tracing/tracing/extras/chrome/cc/util.html ('k') | tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698