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

Unified Diff: tracing/tracing/model/power_series.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/object_collection.html ('k') | tracing/tracing/model/power_series_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/power_series.html
diff --git a/tracing/tracing/model/power_series.html b/tracing/tracing/model/power_series.html
index 24876b3e339ac6b9febbe1cfb0592b27c3a237da..f3a873bab50c3edb519f3ebf8a5cc35f038c0519 100644
--- a/tracing/tracing/model/power_series.html
+++ b/tracing/tracing/model/power_series.html
@@ -114,17 +114,9 @@ tr.exportTo('tr.model', function() {
this.bounds.addValue(this.samples_[this.samples_.length - 1].start);
},
- findTopmostSlicesInThisContainer: function(eventPredicate, callback,
- opt_this) {
+ childEvents: function*() {
+ yield * this.samples_;
},
-
- childEvents: function*(eventTypePredicate, opt_this) {
- if (eventTypePredicate.call(opt_this, PowerSample))
- yield * this.samples_;
- },
-
- childEventContainers: function*(callback, opt_this) {
- }
};
return {
« no previous file with comments | « tracing/tracing/model/object_collection.html ('k') | tracing/tracing/model/power_series_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698