Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Unified Diff: Tools/GardeningServer/model/ct-sheriff-failure-group-data.html

Issue 565523002: [Sheriff-o-matic] Refactor cards and get rid of ct-failure-cards (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ToT-ed Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
diff --git a/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html b/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
index 6c89c9f400ee11e2bd52aab24dbc957b61a914a1..1075fd338c1f9d5318c096e2b079f20f790cb1f6 100644
--- a/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
+++ b/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
@@ -4,12 +4,14 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
+<link rel="import" href="ct-builder-list.html">
<link rel="import" href="ct-commit-list.html">
<script>
function CTSheriffFailureGroupData(failures, commitList) {
this.failures = failures;
this.commitList = commitList;
+ this.builderList = new CTBuilderList(failures);
this.category = 'sheriff';
};
@@ -40,5 +42,5 @@ CTSheriffFailureGroupData.prototype.failedOnce = function() {
}
}
return totalFailures == 1;
-}
+};
</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-builder-failure-group-data.html ('k') | Tools/GardeningServer/test/unit-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698