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> |