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

Unified Diff: Tools/GardeningServer/ui/ct-failure-analyzer.html

Issue 410483002: Add the revision details widget to sheriff-o-matic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Spaces in the curlies! Created 6 years, 4 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-commit-list-tests.html ('k') | Tools/GardeningServer/ui/ct-popup-menu.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-failure-analyzer.html
diff --git a/Tools/GardeningServer/ui/ct-failure-analyzer.html b/Tools/GardeningServer/ui/ct-failure-analyzer.html
index 6dcbb9ab737439c58f1ed9be8ac7ee2353bb9b37..875371980e934345379719c41e14a9332e850920 100644
--- a/Tools/GardeningServer/ui/ct-failure-analyzer.html
+++ b/Tools/GardeningServer/ui/ct-failure-analyzer.html
@@ -3,6 +3,7 @@ Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
+<link href="../model/ct-builder-revisions.html" rel="import">
<link rel="import" href="../model/ct-failure.html">
@@ -34,8 +35,7 @@ found in the LICENSE file.
update: function() {
net.json('http://auto-sheriff.appspot.com/data').then(function(data) {
// FIXME: Don't special-case the blink master.
- this.builderLatestRevisions = data.latest_revisions['chromium.webkit'];
- // FIXME: Make this a model class intead of a dumb object.
+ this.builderLatestRevisions = new CTBuilderRevisions(data.latest_revisions['chromium.webkit']);
this.failures = {};
data.range_groups.forEach(function(group) {
this._processFailuresForGroup(group, data.alerts);
« no previous file with comments | « Tools/GardeningServer/ui/ct-commit-list-tests.html ('k') | Tools/GardeningServer/ui/ct-popup-menu.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698