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

Unified Diff: Tools/GardeningServer/ui/ct-results-panel.html

Issue 418253002: Expose the chromium waterfall in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Tools/GardeningServer/ui/ct-results-panel.html
diff --git a/Tools/GardeningServer/ui/ct-results-panel.html b/Tools/GardeningServer/ui/ct-results-panel.html
index 6d2d5316a709eb833dea5367b2534c331dbc9cd2..0789d19124d5191ab2048b80ee5cdccaed60cc81 100644
--- a/Tools/GardeningServer/ui/ct-results-panel.html
+++ b/Tools/GardeningServer/ui/ct-results-panel.html
@@ -9,7 +9,7 @@ found in the LICENSE file.
<link rel="import" href="ct-results-by-builder.html">
<link rel="import" href="ct-embedded-flakiness-dashboard.html">
-<polymer-element name="ct-results-panel" attributes="failures">
+<polymer-element name="ct-results-panel" attributes="failures tree">
<template>
<style>
:host {
@@ -56,7 +56,7 @@ found in the LICENSE file.
<div class="results">
<!-- FIXME: Do this in a better way than comparing to the test name. -->
<template if="{{ failures[selected].testName != 'whole step failed' }}">
- <ct-embedded-flakiness-dashboard test="{{ failures[selected] }}"></ct-embedded-flakiness-dashboard>
+ <ct-embedded-flakiness-dashboard test="{{ failures[selected] }}" tree="{{ tree }}"></ct-embedded-flakiness-dashboard>
</template>
<ct-results-by-builder failure="{{ failures[selected] }}"></ct-results-by-builder>
</div>
@@ -66,6 +66,7 @@ found in the LICENSE file.
Polymer({
failures: [],
selected: 0,
+ tree: '',
failuresChanged: function() {
this.selected = 0;

Powered by Google App Engine
This is Rietveld 408576698