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

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

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 months 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 side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698