| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <script src="../bower_components/sugar/release/sugar-full.development.js"></scri
pt> | 7 <link rel="import" href="../lib/sugar.html"> |
| 8 <script src="../scripts/results.js"></script> | 8 <script src="../scripts/results.js"></script> |
| 9 | 9 |
| 10 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> | 10 <link rel="import" href="../bower_components/core-animated-pages/core-animated-p
ages.html"> |
| 11 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> | 11 <link rel="import" href="../bower_components/core-animated-pages/transitions/sli
de-from-right.html"> |
| 12 <link rel="import" href="../lib/ct-scheduled-updater.html"> | 12 <link rel="import" href="../lib/ct-scheduled-updater.html"> |
| 13 <link rel="import" href="../model/ct-commit-log.html"> | 13 <link rel="import" href="../model/ct-commit-log.html"> |
| 14 <link rel="import" href="../model/ct-failures.html"> | 14 <link rel="import" href="../model/ct-failures.html"> |
| 15 <link rel="import" href="../model/ct-tree-list.html"> | 15 <link rel="import" href="../model/ct-tree-list.html"> |
| 16 <link rel="import" href="ct-results-panel.html"> | 16 <link rel="import" href="ct-results-panel.html"> |
| 17 <link rel="import" href="ct-tree-select.html"> | 17 <link rel="import" href="ct-tree-select.html"> |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // FIXME: These shouldn't update if there's already an update in | 154 // FIXME: These shouldn't update if there's already an update in |
| 155 // progress. | 155 // progress. |
| 156 this.commitLog.update(); | 156 this.commitLog.update(); |
| 157 this.failures.update(); | 157 this.failures.update(); |
| 158 this.$.unexpected.update(); | 158 this.$.unexpected.update(); |
| 159 }, | 159 }, |
| 160 | 160 |
| 161 }); | 161 }); |
| 162 </script> | 162 </script> |
| 163 </polymer-element> | 163 </polymer-element> |
| OLD | NEW |