OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <link rel="import" href="../lib/net.html"> | 7 <link rel="import" href="../lib/net.html"> |
8 <link rel="import" href="../lib/update-util.html"> | 8 <link rel="import" href="../lib/update-util.html"> |
9 <link rel="import" href="ct-builder-revisions.html"> | |
10 <link rel="import" href="ct-failure.html"> | 9 <link rel="import" href="ct-failure.html"> |
11 <link rel="import" href="ct-failure-group.html"> | 10 <link rel="import" href="ct-failure-group.html"> |
12 <link rel="import" href="ct-builder-failure-group-data.html"> | 11 <link rel="import" href="ct-builder-failure-group-data.html"> |
13 <link rel="import" href="ct-sheriff-failure-group-data.html"> | 12 <link rel="import" href="ct-sheriff-failure-group-data.html"> |
14 <link rel="import" href="ct-trooper-failure-group-data.html"> | 13 <link rel="import" href="ct-trooper-failure-group-data.html"> |
15 <link rel="import" href="ct-commit-list.html"> | 14 <link rel="import" href="ct-commit-list.html"> |
16 | 15 |
17 <script> | 16 <script> |
18 function CTFailures(commitLog) { | 17 function CTFailures(commitLog) { |
19 this.commitLog = commitLog; | 18 this.commitLog = commitLog; |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 newFailures[tree].push(new CTFailureGroup(key, data, 'builders')); | 238 newFailures[tree].push(new CTFailureGroup(key, data, 'builders')); |
240 } | 239 } |
241 }.bind(this)); | 240 }.bind(this)); |
242 } | 241 } |
243 }.bind(this)); | 242 }.bind(this)); |
244 }; | 243 }; |
245 | 244 |
246 })(); | 245 })(); |
247 | 246 |
248 </script> | 247 </script> |
OLD | NEW |