| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 var controllers = controllers || {}; | 26 var controllers = controllers || {}; |
| 27 | 27 |
| 28 (function(){ | 28 (function(){ |
| 29 | 29 |
| 30 // FIXME: This is duplicated from ui/results.js :(. | |
| 31 function isAnyReftest(testName, resultsByTest) | |
| 32 { | |
| 33 return Object.keys(resultsByTest[testName]).map(function(builder) { | |
| 34 return resultsByTest[testName][builder]; | |
| 35 }).some(function(resultNode) { | |
| 36 return resultNode.reftest_type && resultNode.reftest_type.length; | |
| 37 }); | |
| 38 } | |
| 39 | |
| 40 controllers.ResultsDetails = base.extends(Object, { | 30 controllers.ResultsDetails = base.extends(Object, { |
| 41 init: function(view, resultsByTest) | 31 init: function(view, resultsByTest) |
| 42 { | 32 { |
| 43 this._view = view; | 33 this._view = view; |
| 44 this._resultsByTest = resultsByTest; | 34 this._resultsByTest = resultsByTest; |
| 45 this._view.setResultsByTest(resultsByTest); | 35 this._view.setResultsByTest(resultsByTest); |
| 46 | 36 |
| 47 this._view.firstResult(); | 37 this._view.firstResult(); |
| 48 | 38 |
| 49 $(this._view).bind('next', this.onNext.bind(this)); | 39 $(this._view).bind('next', this.onNext.bind(this)); |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 this._notification = new ui.notifications.BuildersFailing(this._mess
age); | 171 this._notification = new ui.notifications.BuildersFailing(this._mess
age); |
| 182 this._view.add(this._notification); | 172 this._view.add(this._notification); |
| 183 } | 173 } |
| 184 // FIXME: We should provide regression ranges for the failing builders. | 174 // FIXME: We should provide regression ranges for the failing builders. |
| 185 // This doesn't seem to happen often enough to worry too much about that
, however. | 175 // This doesn't seem to happen often enough to worry too much about that
, however. |
| 186 this._notification.setFailingBuilders(failuresList); | 176 this._notification.setFailingBuilders(failuresList); |
| 187 } | 177 } |
| 188 }); | 178 }); |
| 189 | 179 |
| 190 })(); | 180 })(); |
| OLD | NEW |