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

Unified Diff: tracing/tracing/ui/analysis/multi_object_sub_view.html

Issue 2955043002: Remove tr.b.asArray. (Closed)
Patch Set: Created 3 years, 6 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/ui/analysis/multi_object_sub_view.html
diff --git a/tracing/tracing/ui/analysis/multi_object_sub_view.html b/tracing/tracing/ui/analysis/multi_object_sub_view.html
index fb7abac0cf65abfd97de087f3337e0858973d210..089f4b011a212a1896b7c1096269f6a8cfb3fb7e 100644
--- a/tracing/tracing/ui/analysis/multi_object_sub_view.html
+++ b/tracing/tracing/ui/analysis/multi_object_sub_view.html
@@ -46,7 +46,7 @@ Polymer({
set selection(selection) {
this.currentSelection_ = selection;
- const objectEvents = tr.b.asArray(selection).sort(
+ const objectEvents = Array.from(selection).sort(
tr.b.math.Range.compareByMinTimes);
const timeSpanConfig = {

Powered by Google App Engine
This is Rietveld 408576698