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

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

Issue 418253002: Expose the chromium waterfall in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to ToT Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/model/ct-commit-tests.html ('k') | Tools/GardeningServer/model/ct-repositories.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/model/ct-failure.html
diff --git a/Tools/GardeningServer/model/ct-failure.html b/Tools/GardeningServer/model/ct-failure.html
index de769d21f36b86d5b35b112d5f1a83d5dfb3db21..d007fe1d6b0f90650dbacddc8380d640e4a52140 100644
--- a/Tools/GardeningServer/model/ct-failure.html
+++ b/Tools/GardeningServer/model/ct-failure.html
@@ -5,13 +5,13 @@ found in the LICENSE file.
-->
<script>
-function CTFailure(step, reason, resultsByBuilder, oldestFailingRevision, newestPassingRevision) {
+function CTFailure(step, reason, resultsByBuilder, firstFailingRevisions, lastPassingRevisions) {
this.step = step;
// FIXME: Rename this to reason.
this.testName = reason;
this.resultNodesByBuilder = resultsByBuilder;
// FIXME: Move these up one layer to the groupedFailures object.
- this.oldestFailingRevision = oldestFailingRevision;
- this.newestPassingRevision = newestPassingRevision;
+ this.firstFailingRevisions = firstFailingRevisions;
+ this.lastPassingRevisions = lastPassingRevisions;
}
</script>
« no previous file with comments | « Tools/GardeningServer/model/ct-commit-tests.html ('k') | Tools/GardeningServer/model/ct-repositories.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698