Index: tracing/tracing/value/ui/numeric_stats_span.html |
diff --git a/tracing/tracing/value/ui/numeric_stats_span.html b/tracing/tracing/value/ui/numeric_stats_span.html |
deleted file mode 100644 |
index f9374ef366667d9d5bc6e133e8a7869dacfb5cab..0000000000000000000000000000000000000000 |
--- a/tracing/tracing/value/ui/numeric_stats_span.html |
+++ /dev/null |
@@ -1,65 +0,0 @@ |
-<!DOCTYPE html> |
-<!-- |
-Copyright 2016 The Chromium Authors. All rights reserved. |
-Use of this source code is governed by a BSD-style license that can be |
-found in the LICENSE file. |
---> |
- |
-<link rel="import" href="/tracing/ui/base/table.html"> |
-<link rel="import" href="/tracing/value/ui/scalar_span.html"> |
- |
-<dom-module name="tr-v-ui-numeric-stats-span"> |
- <template> |
- <tr-ui-b-table id="stats"></tr-ui-b-table> |
- </template> |
-</dom-module> |
- |
-<script> |
-'use strict'; |
-// TODO(benjhayden): Rename to histogram-stats-span. |
-Polymer({ |
- is: 'tr-v-ui-numeric-stats-span', |
- |
- ready: function() { |
- this.numeric_ = undefined; |
- |
- this.$.stats.showHeader = false; |
- this.$.stats.tableColumns = [ |
- { |
- value: function(row) { |
- return row.name; |
- } |
- }, |
- { |
- align: tr.ui.b.TableFormat.ColumnAlignment.RIGHT, |
- value: function(row) { |
- return tr.v.ui.createScalarSpan(row.value); |
- } |
- } |
- ]; |
- }, |
- |
- get numeric() { |
- return this.numeric_; |
- }, |
- |
- set numeric(n) { |
- this.numeric_ = n; |
- this.updateContents_(); |
- }, |
- |
- updateContents_: function() { |
- var rows = []; |
- if (this.numeric_) { |
- for (var [statName, scalar] of this.numeric_.statisticsScalars) { |
- rows.push({ |
- name: statName, |
- value: scalar |
- }); |
- } |
- } |
- this.$.stats.tableRows = rows; |
- this.$.stats.rebuild(); |
- } |
-}); |
-</script> |