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

Unified Diff: third_party/WebKit/Source/devtools/front_end/inline_editor/BezierUI.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/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;

Powered by Google App Engine
This is Rietveld 408576698