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 7968e34eabf6f98e8f0cdd903ad7d70876ba78e9..e71fb13b3b3a8867eef01978ac1adae6d572ccd2 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,22 +15,15 @@ found in the LICENSE file. |
<polymer-element name="ct-unexpected-failures"> |
<template> |
<style> |
- paper-toast { |
- bottom: 40px; |
- left: 10px; |
- } |
- |
ct-tree-status, ct-failing-builders { |
margin: 5px; |
} |
</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> |
ojan
2014/07/21 00:44:57
The grouping happens on the backend now, so no nee
abarth-chromium
2014/07/21 06:44:18
Neat
|
+ <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> |
ojan
2014/07/21 00:44:57
No more need for a toast anymore since we load so
|
+ <ct-failure-stream groups="{{ failures.unexpected }}" builderLatestRevisions="{{ builderLatestRevisions }}" commits="{{revisionLog.commits}}"></ct-failure-stream> |
</template> |
<script> |
Polymer({ |
@@ -50,10 +42,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> |