| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 * @unrestricted | 5 * @unrestricted |
| 6 */ | 6 */ |
| 7 WebInspector.AnimationUI = class { | 7 WebInspector.AnimationUI = class { |
| 8 /** | 8 /** |
| 9 * @param {!WebInspector.AnimationModel.Animation} animation | 9 * @param {!WebInspector.AnimationModel.Animation} animation |
| 10 * @param {!WebInspector.AnimationTimeline} timeline | 10 * @param {!WebInspector.AnimationTimeline} timeline |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 'Light Blue': WebInspector.Color.parse('#03A9F4'), | 405 'Light Blue': WebInspector.Color.parse('#03A9F4'), |
| 406 'Deep Orange': WebInspector.Color.parse('#FF5722'), | 406 'Deep Orange': WebInspector.Color.parse('#FF5722'), |
| 407 'Blue': WebInspector.Color.parse('#5677FC'), | 407 'Blue': WebInspector.Color.parse('#5677FC'), |
| 408 'Lime': WebInspector.Color.parse('#CDDC39'), | 408 'Lime': WebInspector.Color.parse('#CDDC39'), |
| 409 'Blue Grey': WebInspector.Color.parse('#607D8B'), | 409 'Blue Grey': WebInspector.Color.parse('#607D8B'), |
| 410 'Pink': WebInspector.Color.parse('#E91E63'), | 410 'Pink': WebInspector.Color.parse('#E91E63'), |
| 411 'Green': WebInspector.Color.parse('#0F9D58'), | 411 'Green': WebInspector.Color.parse('#0F9D58'), |
| 412 'Brown': WebInspector.Color.parse('#795548'), | 412 'Brown': WebInspector.Color.parse('#795548'), |
| 413 'Cyan': WebInspector.Color.parse('#00BCD4') | 413 'Cyan': WebInspector.Color.parse('#00BCD4') |
| 414 }; | 414 }; |
| 415 | |
| 416 | |
| OLD | NEW |