| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2015 The Chromium Authors. All rights reserved. | 2 Copyright 2015 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 --><html><head><link rel="import" href="../appengine_module/components/net.html"
> |
| 6 | |
| 7 <link rel="import" href="../appengine_module/components/net.html"> | |
| 8 // Fetch from http://chromium-build.appspot.com/p/chromium/all_rotations.js | 6 // Fetch from http://chromium-build.appspot.com/p/chromium/all_rotations.js |
| 9 | 7 |
| 10 <script> | 8 <script> |
| 11 | 9 |
| 12 function CTRotations() { | 10 function CTRotations() { |
| 13 this._url = '/rotations'; | 11 this._url = '/rotations'; |
| 14 } | 12 } |
| 15 | 13 |
| 16 (function() { | 14 (function() { |
| 17 'use strict'; | 15 'use strict'; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 45 } | 43 } |
| 46 if (day.date == date) { | 44 if (day.date == date) { |
| 47 return true; | 45 return true; |
| 48 } | 46 } |
| 49 }, this); | 47 }, this); |
| 50 return latestParticipant; | 48 return latestParticipant; |
| 51 }; | 49 }; |
| 52 })(); | 50 })(); |
| 53 | 51 |
| 54 </script> | 52 </script> |
| OLD | NEW |