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