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

Unified Diff: Tools/GardeningServer/ui/ct-unexpected-failures.html

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments 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/ui/ct-sheriff-o-matic.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-unexpected-failures.html
diff --git a/Tools/GardeningServer/ui/ct-unexpected-failures.html b/Tools/GardeningServer/ui/ct-unexpected-failures.html
index 109271d462df0c0be532a12af74c93f0ac39c7ab..57bf23adb3a082e36b8c10734a988ba388b1f277 100644
--- a/Tools/GardeningServer/ui/ct-unexpected-failures.html
+++ b/Tools/GardeningServer/ui/ct-unexpected-failures.html
@@ -5,7 +5,6 @@ found in the LICENSE file.
-->
<link rel="import" href="../bower_components/paper-button/paper-button.html">
-<link rel="import" href="../bower_components/paper-toast/paper-toast.html">
<link rel="import" href="../model/ct-commit-log.html">
<link rel="import" href="ct-failing-builders.html">
<link rel="import" href="ct-failure-analyzer.html">
@@ -16,11 +15,6 @@ found in the LICENSE file.
<polymer-element name="ct-unexpected-failures">
<template>
<style>
- paper-toast {
- bottom: 40px;
- left: 10px;
- }
-
ct-failing-builders {
margin: 5px;
}
@@ -38,13 +32,11 @@ found in the LICENSE file.
padding: 0;
}
</style>
- <ct-failure-analyzer id="analyzer" status="{{ analyzerStatus }}" failures="{{ failures }}" builderLatestRevisions="{{ builderLatestRevisions }}"></ct-failure-analyzer>
- <ct-failure-grouper failures="{{ failures.unexpected }}" groups="{{ failureGroups }}"></ct-failure-grouper>
+ <ct-failure-analyzer id="analyzer" failures="{{ failures }}" builderLatestRevisions="{{ builderLatestRevisions }}"></ct-failure-analyzer>
<ct-tree-status project="chromium"></ct-tree-status>
<ct-tree-status project="blink"></ct-tree-status>
<ct-failing-builders builders="{{ failures.builders }}"></ct-failing-builders>
- <ct-failure-stream groups="{{ failureGroups }}" builderLatestRevisions="{{ builderLatestRevisions }}" commits="{{ revisionLog.commits }}"></ct-failure-stream>
- <paper-toast id="toast" text="{{ analyzerStatus }}"></paper-toast>
+ <ct-failure-stream groups="{{ failures.unexpected }}" builderLatestRevisions="{{ builderLatestRevisions }}" commits="{{revisionLog.commits}}"></ct-failure-stream>
</template>
<script>
Polymer({
@@ -63,10 +55,6 @@ found in the LICENSE file.
for (var i = 0; i < treeStatuses.length; i++)
treeStatuses[i].update();
},
-
- analyzerStatusChanged: function() {
- this.$.toast.show();
- },
});
</script>
</polymer-element>
« no previous file with comments | « Tools/GardeningServer/ui/ct-sheriff-o-matic.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698