OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 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/base/color_scheme.html"> | 8 <link rel="import" href="/tracing/base/color_scheme.html"> |
9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> |
10 <link rel="import" href="/tracing/base/multi_dimensional_view.html"> | 10 <link rel="import" href="/tracing/base/multi_dimensional_view.html"> |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn | 194 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn |
195 }, | 195 }, |
196 { | 196 { |
197 importance: 0, | 197 importance: 0, |
198 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn | 198 columnConstructor: tr.ui.analysis.DetailsNumericMemoryColumn |
199 } | 199 } |
200 ]; | 200 ]; |
201 | 201 |
202 Polymer({ | 202 Polymer({ |
203 is: 'tr-ui-a-memory-dump-heap-details-pane', | 203 is: 'tr-ui-a-memory-dump-heap-details-pane', |
204 behaviors: [tr.ui.analysis.behaviors.StackedPane], | 204 behaviors: [tr.ui.analysis.StackedPane], |
205 | 205 |
206 created: function() { | 206 created: function() { |
207 this.heapDumps_ = undefined; | 207 this.heapDumps_ = undefined; |
208 this.aggregationMode_ = undefined; | 208 this.aggregationMode_ = undefined; |
209 this.viewMode_ = undefined; | 209 this.viewMode_ = undefined; |
210 }, | 210 }, |
211 | 211 |
212 ready: function() { | 212 ready: function() { |
213 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW; | 213 this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW; |
214 this.$.info_bar.message = 'Note: Values displayed in the heavy view ' + | 214 this.$.info_bar.message = 'Note: Values displayed in the heavy view ' + |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 } | 484 } |
485 }); | 485 }); |
486 | 486 |
487 return { | 487 return { |
488 // Exported for testing. | 488 // Exported for testing. |
489 RowDimension: RowDimension, | 489 RowDimension: RowDimension, |
490 AllocationCountColumn: AllocationCountColumn | 490 AllocationCountColumn: AllocationCountColumn |
491 }; | 491 }; |
492 }); | 492 }); |
493 </script> | 493 </script> |
OLD | NEW |