| 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/ui/tracks/letter_dot_track.html"> | 8 <link rel="import" href="/tracing/ui/tracks/letter_dot_track.html"> |
| 9 <script> | 9 <script> |
| 10 'use strict'; | 10 'use strict'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 return; | 38 return; |
| 39 } | 39 } |
| 40 this.items = this.alerts_.map(function(alert) { | 40 this.items = this.alerts_.map(function(alert) { |
| 41 return new tr.ui.tracks.LetterDot( | 41 return new tr.ui.tracks.LetterDot( |
| 42 alert, String.fromCharCode(9888), alert.colorId, alert.start); | 42 alert, String.fromCharCode(9888), alert.colorId, alert.start); |
| 43 }); | 43 }); |
| 44 } | 44 } |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 return { | 47 return { |
| 48 AlertTrack: AlertTrack | 48 AlertTrack, |
| 49 }; | 49 }; |
| 50 }); | 50 }); |
| 51 </script> | 51 </script> |
| OLD | NEW |