Index: third_party/WebKit/Source/devtools/front_end/inline_editor/BezierUI.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js b/third_party/WebKit/Source/devtools/front_end/inline_editor/BezierUI.js |
similarity index 97% |
rename from third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js |
rename to third_party/WebKit/Source/devtools/front_end/inline_editor/BezierUI.js |
index 7eafd708b44d9691b34fd223aa3f9ac4cfe1fcec..64873537c674b199f106bfb8b1c3aeb482339ef6 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui/BezierUI.js |
+++ b/third_party/WebKit/Source/devtools/front_end/inline_editor/BezierUI.js |
@@ -4,7 +4,7 @@ |
/** |
* @unrestricted |
*/ |
-UI.BezierUI = class { |
+InlineEditor.BezierUI = class { |
/** |
* @param {number} width |
* @param {number} height |
@@ -26,7 +26,7 @@ UI.BezierUI = class { |
* @param {number} width |
*/ |
static drawVelocityChart(bezier, path, width) { |
- var height = UI.BezierUI.Height; |
+ var height = InlineEditor.BezierUI.Height; |
var pathBuilder = ['M', 0, height]; |
/** @const */ var sampleSize = 1 / 40; |
@@ -125,4 +125,4 @@ UI.BezierUI = class { |
} |
}; |
-UI.BezierUI.Height = 26; |
+InlineEditor.BezierUI.Height = 26; |