Index: third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js b/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js |
index 816766e39f4d797040c9ec53c0d08f38d16dd06c..90c6e3d59959dbd4ac34056ae829107c1de8e5d4 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js |
+++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js |
@@ -186,12 +186,12 @@ Animation.AnimationUI = class { |
if (easing === 'linear') { |
group.style.fill = this._color; |
- var height = UI.BezierUI.Height; |
+ var height = InlineEditor.BezierUI.Height; |
group.setAttribute( |
'd', ['M', 0, height, 'L', 0, 5, 'L', width.toFixed(2), 5, 'L', width.toFixed(2), height, 'Z'].join(' ')); |
} else if (bezier) { |
group.style.fill = this._color; |
- UI.BezierUI.drawVelocityChart(bezier, group, width); |
+ InlineEditor.BezierUI.drawVelocityChart(bezier, group, width); |
} else { |
var stepFunction = Animation.AnimationTimeline.StepTimingFunction.parse(easing); |
group.removeChildren(); |