Index: Tools/GardeningServer/model/ct-trooper-failure-group-data.html |
diff --git a/Tools/GardeningServer/model/ct-trooper-failure-group-data.html b/Tools/GardeningServer/model/ct-trooper-failure-group-data.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..636bfa4e0c5d3cee7196aa55aaffdba6ac22abe9 |
--- /dev/null |
+++ b/Tools/GardeningServer/model/ct-trooper-failure-group-data.html |
@@ -0,0 +1,27 @@ |
+<!-- |
+Copyright 2014 The Chromium Authors. All rights reserved. |
+Use of this source code is governed by a BSD-style license that can be |
+found in the LICENSE file. |
+--> |
+ |
+<script> |
+function CTTrooperFailureGroupData(details, url, raw, type, tree) { |
+ this.details = details; |
+ this.url = url; |
+ this.data = raw; |
+ this.type = type; |
+ this.tree = tree; |
+}; |
+ |
+CTTrooperFailureGroupData.prototype.getAnnotations = function() { |
+ return []; |
+}; |
+ |
+CTTrooperFailureGroupData.prototype.dataToExamine = function() { |
+ return {url: this.url}; |
+}; |
+ |
+CTTrooperFailureGroupData.prototype.failureKeys = function() { |
+ return []; |
+}; |
+</script> |