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

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

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge 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
« no previous file with comments | « tracing/tracing/model/slice_test.html ('k') | tracing/tracing/model/user_model/user_model.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/thread.html
diff --git a/tracing/tracing/model/thread.html b/tracing/tracing/model/thread.html
index 16d8ea63a4131ce2247448b70d0eaa22b288bbd8..c11aeb13d1d9e8fe87d90acd6f121a8b705db66f 100644
--- a/tracing/tracing/model/thread.html
+++ b/tracing/tracing/model/thread.html
@@ -73,10 +73,6 @@ tr.exportTo('tr.model', function() {
return Thread.compare(this, that);
},
- findTopmostSlicesInThisContainer: function(eventPredicate, callback,
- opt_this) {
- },
-
childEventContainers: function*() {
if (this.sliceGroup.length)
yield this.sliceGroup;
@@ -86,11 +82,9 @@ tr.exportTo('tr.model', function() {
yield this.asyncSliceGroup;
},
- childEvents: function*(eventTypePredicate, opt_this) {
- if (this.timeSlices && this.timeSlices.length) {
- if (eventTypePredicate.call(opt_this, ThreadTimeSlice))
- yield * this.timeSlices;
- }
+ childEvents: function*() {
+ if (this.timeSlices)
+ yield * this.timeSlices;
},
iterateAllPersistableObjects: function(cb) {
« no previous file with comments | « tracing/tracing/model/slice_test.html ('k') | tracing/tracing/model/user_model/user_model.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698