| Index: tracing/tracing/model/process_base.html
|
| diff --git a/tracing/tracing/model/process_base.html b/tracing/tracing/model/process_base.html
|
| index 16b67424b2c81a890ad3cc0213511883deb3d2f7..92aa673090f58201e60590ebb96100ddab94c177 100644
|
| --- a/tracing/tracing/model/process_base.html
|
| +++ b/tracing/tracing/model/process_base.html
|
| @@ -52,19 +52,12 @@ tr.exportTo('tr.model', function() {
|
| throw new Error('Not implemented');
|
| },
|
|
|
| - findTopmostSlicesInThisContainer: function(eventPredicate, callback,
|
| - opt_this) {
|
| - },
|
| -
|
| childEventContainers: function*() {
|
| yield * tr.b.dictionaryValues(this.threads);
|
| yield * tr.b.dictionaryValues(this.counters);
|
| yield this.objects;
|
| },
|
|
|
| - childEvents: function*(eventTypePredicate, opt_this) {
|
| - },
|
| -
|
| iterateAllPersistableObjects: function(cb) {
|
| cb(this);
|
| for (var tid in this.threads)
|
| @@ -87,9 +80,8 @@ tr.exportTo('tr.model', function() {
|
| * specified.
|
| */
|
| shiftTimestampsForward: function(amount) {
|
| - this.iterateAllChildEventContainers(function(child) {
|
| + for (var child of this.childEventContainers())
|
| child.shiftTimestampsForward(amount);
|
| - });
|
| },
|
|
|
| /**
|
|
|