Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js

Issue 2469113002: DevTools: clang format all the source + clang config landed. (Closed)
Patch Set: for landing Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698