| Index: tracing/tracing/model/slice_group.html
|
| diff --git a/tracing/tracing/model/slice_group.html b/tracing/tracing/model/slice_group.html
|
| index 34e0d68c27d845ade908438ea8909905c248ec6b..9c14e8bf54e424883d4bf264866fde6e436c2ba0 100644
|
| --- a/tracing/tracing/model/slice_group.html
|
| +++ b/tracing/tracing/model/slice_group.html
|
| @@ -275,20 +275,16 @@ tr.exportTo('tr.model', function() {
|
| return newSlice;
|
| },
|
|
|
| - findTopmostSlicesInThisContainer: function(eventPredicate, callback,
|
| - opt_this) {
|
| + findTopmostSlicesInThisContainer: function*(eventPredicate, opt_this) {
|
| if (!this.haveTopLevelSlicesBeenBuilt)
|
| throw new Error('Nope');
|
|
|
| - this.topLevelSlices.forEach(function(s) {
|
| - s.findTopmostSlicesRelativeToThisSlice(eventPredicate, callback,
|
| - opt_this);
|
| - });
|
| + for (var s of this.topLevelSlices)
|
| + yield * s.findTopmostSlicesRelativeToThisSlice(eventPredicate);
|
| },
|
|
|
| - childEvents: function*(eventTypePredicate, opt_this) {
|
| - if (eventTypePredicate.call(opt_this, this.sliceConstructor))
|
| - yield * this.slices;
|
| + childEvents: function*() {
|
| + yield * this.slices;
|
| },
|
|
|
| childEventContainers: function*() {
|
|
|