| 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 8bfc248f6fbe5c36fd14ff970e895c6fe4dc7251..fe5ad7c097b9d19ca5cf6e877099a67a82c3b733 100644
|
| --- a/tracing/tracing/model/container_memory_dump.html
|
| +++ b/tracing/tracing/model/container_memory_dump.html
|
| @@ -66,6 +66,12 @@ tr.exportTo('tr.model', function() {
|
| }
|
|
|
| return this.memoryAllocatorDumpsByFullName_[fullName];
|
| + },
|
| +
|
| + iterateRootAllocatorDumps: function(fn, opt_this) {
|
| + if (this.memoryAllocatorDumps === undefined)
|
| + return;
|
| + this.memoryAllocatorDumps.forEach(fn, opt_this || this);
|
| }
|
| };
|
|
|
|
|