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

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: Update to ToT, add Popup Menu and tests. 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
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 f31bc4af8cf6c55f313cf59c22008843cefd860b..a18a6b41e71380a651afcd14269cdefb2bdc9d33 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);

Powered by Google App Engine
This is Rietveld 408576698