| 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"> | 8 <link rel="import" href="/tracing/base/utils.html"> |
| 9 <link rel="import" href="/tracing/model/event_set.html"> | 9 <link rel="import" href="/tracing/model/event_set.html"> |
| 10 <link rel="import" | 10 <link rel="import" |
| 11 href="/tracing/ui/analysis/container_memory_dump_sub_view.html"> | 11 href="/tracing/ui/analysis/container_memory_dump_sub_view.html"> |
| 12 <link rel="import" | 12 <link rel="import" |
| 13 href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html"> | 13 href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html"> |
| 14 <link rel="import" href="/tracing/ui/base/deep_utils.html"> | 14 <link rel="import" href="/tracing/ui/base/deep_utils.html"> |
| 15 <link rel="import" href="/tracing/ui/brushing_state_controller.html"> | 15 <link rel="import" href="/tracing/ui/brushing_state_controller.html"> |
| 16 | 16 |
| 17 <script> | 17 <script> |
| 18 'use strict'; | 18 'use strict'; |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 | 342 |
| 343 // Check the timestamp. | 343 // Check the timestamp. |
| 344 assert.strictEqual(col.value(subRow).children[0].value, 42); | 344 assert.strictEqual(col.value(subRow).children[0].value, 42); |
| 345 | 345 |
| 346 // Check that the analysis link is associated with the right dump. | 346 // Check that the analysis link is associated with the right dump. |
| 347 assert.isTrue(col.value(subRow).selection.equals( | 347 assert.isTrue(col.value(subRow).selection.equals( |
| 348 new tr.model.EventSet(globalMemoryDumps[0].processMemoryDumps[2]))); | 348 new tr.model.EventSet(globalMemoryDumps[0].processMemoryDumps[2]))); |
| 349 }); | 349 }); |
| 350 }); | 350 }); |
| 351 </script> | 351 </script> |
| OLD | NEW |