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

Unified Diff: tracing/tracing/model/container_memory_dump.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/model/clock_sync_manager.html ('k') | tracing/tracing/model/counter.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/container_memory_dump.html
diff --git a/tracing/tracing/model/container_memory_dump.html b/tracing/tracing/model/container_memory_dump.html
index 24555b009c7830ac4f7d5d06a8cc10e595d886da..cd346fa485cc413c0e1965fcaad62f555fff1e9f 100644
--- a/tracing/tracing/model/container_memory_dump.html
+++ b/tracing/tracing/model/container_memory_dump.html
@@ -56,8 +56,7 @@ tr.exportTo('tr.model', function() {
},
getMemoryAllocatorDumpByFullName: function(fullName) {
- if (this.memoryAllocatorDumps_ === undefined)
- return undefined;
+ if (this.memoryAllocatorDumps_ === undefined) return undefined;
// Lazily generate the index if necessary.
if (this.memoryAllocatorDumpsByFullName_ === undefined) {
@@ -81,8 +80,7 @@ tr.exportTo('tr.model', function() {
},
iterateRootAllocatorDumps: function(fn, opt_this) {
- if (this.memoryAllocatorDumps === undefined)
- return;
+ if (this.memoryAllocatorDumps === undefined) return;
this.memoryAllocatorDumps.forEach(fn, opt_this || this);
}
};
« no previous file with comments | « tracing/tracing/model/clock_sync_manager.html ('k') | tracing/tracing/model/counter.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698