| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/range.html"> | 8 <link rel="import" href="/tracing/base/range.html"> |
| 9 | 9 |
| 10 <script> | 10 <script> |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 viewX - arrowSize * 0.75, viewY + viewHeight, | 234 viewX - arrowSize * 0.75, viewY + viewHeight, |
| 235 viewX + arrowSize * 0.75, viewY + viewHeight, | 235 viewX + arrowSize * 0.75, viewY + viewHeight, |
| 236 viewX, viewY + viewHeight - arrowSize); | 236 viewX, viewY + viewHeight - arrowSize); |
| 237 ctx.fill(); | 237 ctx.fill(); |
| 238 | 238 |
| 239 ctx.restore(); | 239 ctx.restore(); |
| 240 } | 240 } |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 return { | 243 return { |
| 244 SnapIndicator: SnapIndicator, | 244 SnapIndicator, |
| 245 TimelineInterestRange: TimelineInterestRange | 245 TimelineInterestRange, |
| 246 }; | 246 }; |
| 247 }); | 247 }); |
| 248 </script> | 248 </script> |
| OLD | NEW |