| Index: third_party/WebKit/Source/devtools/front_end/animation/AnimationGroupPreviewUI.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/animation/AnimationGroupPreviewUI.js b/third_party/WebKit/Source/devtools/front_end/animation/AnimationGroupPreviewUI.js
|
| index 424ccbe30d6b3253b275d5bd380a57f74b8a06ee..d5c4fa8bbd65ef829347e1b2f16f5e933c117935 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationGroupPreviewUI.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationGroupPreviewUI.js
|
| @@ -4,9 +4,9 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.AnimationGroupPreviewUI = class {
|
| +Animation.AnimationGroupPreviewUI = class {
|
| /**
|
| - * @param {!WebInspector.AnimationModel.AnimationGroup} model
|
| + * @param {!Animation.AnimationModel.AnimationGroup} model
|
| */
|
| constructor(model) {
|
| this._model = model;
|
| @@ -67,7 +67,7 @@ WebInspector.AnimationGroupPreviewUI = class {
|
| var y = Math.floor(this._viewBoxHeight / Math.max(6, numberOfAnimations) * i + 1);
|
| line.setAttribute('y1', y);
|
| line.setAttribute('y2', y);
|
| - line.style.stroke = WebInspector.AnimationUI.Color(this._model.animations()[i]);
|
| + line.style.stroke = Animation.AnimationUI.Color(this._model.animations()[i]);
|
| }
|
| }
|
| };
|
|
|