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

Unified Diff: tracing/tracing/model/object_collection.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Sync to head Created 4 years, 5 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
Index: tracing/tracing/model/object_collection.html
diff --git a/tracing/tracing/model/object_collection.html b/tracing/tracing/model/object_collection.html
index 1410b27c3e916b28cf828357daa14e77268fab0c..93122c8d4f5d78fed01afb6b9bed2c8b14c2e1f0 100644
--- a/tracing/tracing/model/object_collection.html
+++ b/tracing/tracing/model/object_collection.html
@@ -40,21 +40,10 @@ tr.exportTo('tr.model', function() {
ObjectCollection.prototype = {
__proto__: tr.model.EventContainer.prototype,
- findTopmostSlicesInThisContainer: function(eventPredicate, callback,
- opt_this) {
- },
-
- childEventContainers: function*() {
- },
-
- childEvents: function*(eventTypePredicate, opt_this) {
- var bI = !!eventTypePredicate.call(opt_this, ObjectInstance);
- var bS = !!eventTypePredicate.call(opt_this, ObjectSnapshot);
+ childEvents: function*() {
for (var instance of this.getAllObjectInstances()) {
- if (bI)
- yield instance;
- if (bS)
- yield * instance.snapshots;
+ yield instance;
+ yield * instance.snapshots;
}
},

Powered by Google App Engine
This is Rietveld 408576698