| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/model/event_set.html"> | 8 <link rel="import" href="/tracing/model/event_set.html"> |
| 9 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> | 9 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> |
| 10 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> | 10 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 </style> | 22 </style> |
| 23 <tr-ui-b-table id="content"></tr-ui-b-table> | 23 <tr-ui-b-table id="content"></tr-ui-b-table> |
| 24 </template> | 24 </template> |
| 25 </dom-module> | 25 </dom-module> |
| 26 <script> | 26 <script> |
| 27 'use strict'; | 27 'use strict'; |
| 28 | 28 |
| 29 Polymer({ | 29 Polymer({ |
| 30 is: 'tr-ui-a-multi-object-sub-view', | 30 is: 'tr-ui-a-multi-object-sub-view', |
| 31 behaviors: [tr.ui.analysis.behaviors.AnalysisSubView], | 31 behaviors: [tr.ui.analysis.AnalysisSubView], |
| 32 | 32 |
| 33 created: function() { | 33 created: function() { |
| 34 this.currentSelection_ = undefined; | 34 this.currentSelection_ = undefined; |
| 35 }, | 35 }, |
| 36 | 36 |
| 37 ready: function() { | 37 ready: function() { |
| 38 this.$.content.showHeader = false; | 38 this.$.content.showHeader = false; |
| 39 }, | 39 }, |
| 40 | 40 |
| 41 get selection() { | 41 get selection() { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 return linkEl; | 86 return linkEl; |
| 87 }, | 87 }, |
| 88 width: '100%' | 88 width: '100%' |
| 89 } | 89 } |
| 90 ]; | 90 ]; |
| 91 table.tableRows = objectEvents; | 91 table.tableRows = objectEvents; |
| 92 table.rebuild(); | 92 table.rebuild(); |
| 93 } | 93 } |
| 94 }); | 94 }); |
| 95 </script> | 95 </script> |
| OLD | NEW |