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); |
} |
}; |