| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 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 | |
| 4 found in the LICENSE file. | |
| 5 --> | |
| 6 | |
| 7 <script> | |
| 8 function CTMasterFailureGroupData(failure, examineUrl) { | |
| 9 this.failure = failure; | |
| 10 this.key = failure.key; | |
| 11 this.category = 'master'; | |
| 12 this.url = examineUrl; | |
| 13 }; | |
| 14 | |
| 15 CTMasterFailureGroupData.prototype.getAnnotations = function() { | |
| 16 // FIXME: Merge in annotations! crbug.com/413499 | |
| 17 return []; | |
| 18 }; | |
| 19 | |
| 20 CTMasterFailureGroupData.prototype.failureKeys = function() { | |
| 21 return [this.failure.key]; | |
| 22 }; | |
| 23 </script> | |
| OLD | NEW |