| OLD | NEW |
| 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="../bower_components/core-ajax/core-ajax.html"> | 5 <link rel="import" href="../bower_components/core-ajax/core-ajax.html"> |
| 6 | 6 |
| 7 <polymer-element name="build-table" attributes="builds auto"> | 7 <polymer-element name="build-table" attributes="builds auto"> |
| 8 <template> | 8 <template> |
| 9 <style> | 9 <style> |
| 10 :host { | 10 :host { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 maxDuration = duration; | 184 maxDuration = duration; |
| 185 maxDurationName = name; | 185 maxDurationName = name; |
| 186 } | 186 } |
| 187 buildDuration += duration; | 187 buildDuration += duration; |
| 188 }); | 188 }); |
| 189 steps.max = {name: maxDurationName, duration: maxDuration, percent: maxD
uration / buildDuration}; | 189 steps.max = {name: maxDurationName, duration: maxDuration, percent: maxD
uration / buildDuration}; |
| 190 } | 190 } |
| 191 }); | 191 }); |
| 192 </script> | 192 </script> |
| 193 </polymer-element> | 193 </polymer-element> |
| OLD | NEW |