| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 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"> | 8 <link rel="import" href="/tracing/base/utils.html"> |
| 9 <link rel="import" href="/tracing/model/container_memory_dump.html"> | 9 <link rel="import" href="/tracing/model/container_memory_dump.html"> |
| 10 <link rel="import" href="/tracing/model/memory_allocator_dump.html"> | 10 <link rel="import" href="/tracing/model/memory_allocator_dump.html"> |
| 11 <link rel="import" href="/tracing/ui/tracks/chart_point.html"> | 11 <link rel="import" href="/tracing/ui/tracks/chart_point.html"> |
| 12 <link rel="import" href="/tracing/ui/tracks/chart_series.html"> | 12 <link rel="import" href="/tracing/ui/tracks/chart_series.html"> |
| 13 <link rel="import" href="/tracing/ui/tracks/chart_series_y_axis.html"> | 13 <link rel="import" href="/tracing/ui/tracks/chart_series_y_axis.html"> |
| 14 <link rel="import" href="/tracing/ui/tracks/chart_track.html"> | 14 <link rel="import" href="/tracing/ui/tracks/chart_track.html"> |
| 15 <link rel="import" href="/tracing/ui/tracks/container_track.html"> | 15 <link rel="import" href="/tracing/ui/tracks/container_track.html"> |
| 16 <link rel="import" href="/tracing/ui/tracks/letter_dot_track.html"> | 16 <link rel="import" href="/tracing/ui/tracks/letter_dot_track.html"> |
| 17 | 17 |
| 18 <script> | 18 <script> |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 } | 200 } |
| 201 | 201 |
| 202 return { | 202 return { |
| 203 buildMemoryLetterDots, | 203 buildMemoryLetterDots, |
| 204 buildGlobalUsedMemoryChartSeries, | 204 buildGlobalUsedMemoryChartSeries, |
| 205 buildProcessAllocatedMemoryChartSeries, | 205 buildProcessAllocatedMemoryChartSeries, |
| 206 buildGlobalAllocatedMemoryChartSeries, | 206 buildGlobalAllocatedMemoryChartSeries, |
| 207 }; | 207 }; |
| 208 }); | 208 }); |
| 209 </script> | 209 </script> |
| OLD | NEW |