| 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/iteration_helpers.html"> | |
| 9 <link rel="import" href="/tracing/base/unit.html"> | 8 <link rel="import" href="/tracing/base/unit.html"> |
| 9 <link rel="import" href="/tracing/base/utils.html"> |
| 10 <link rel="import" href="/tracing/model/model.html"> | 10 <link rel="import" href="/tracing/model/model.html"> |
| 11 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> | 11 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> |
| 12 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> | 12 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> |
| 13 <link rel="import" href="/tracing/ui/analysis/memory_dump_header_pane.html"> | 13 <link rel="import" href="/tracing/ui/analysis/memory_dump_header_pane.html"> |
| 14 <link rel="import" href="/tracing/ui/analysis/stacked_pane_view.html"> | 14 <link rel="import" href="/tracing/ui/analysis/stacked_pane_view.html"> |
| 15 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> | 15 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> |
| 16 <link rel="import" href="/tracing/value/ui/scalar_span.html"> | 16 <link rel="import" href="/tracing/value/ui/scalar_span.html"> |
| 17 | 17 |
| 18 <dom-module id='tr-ui-a-container-memory-dump-sub-view'> | 18 <dom-module id='tr-ui-a-container-memory-dump-sub-view'> |
| 19 <template> | 19 <template> |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 'tr-ui-a-container-memory-dump-sub-view', | 191 'tr-ui-a-container-memory-dump-sub-view', |
| 192 tr.model.ProcessMemoryDump, | 192 tr.model.ProcessMemoryDump, |
| 193 { | 193 { |
| 194 multi: true, | 194 multi: true, |
| 195 title: 'Process Memory Dumps', | 195 title: 'Process Memory Dumps', |
| 196 }); | 196 }); |
| 197 | 197 |
| 198 return {}; | 198 return {}; |
| 199 }); | 199 }); |
| 200 </script> | 200 </script> |
| OLD | NEW |