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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/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]);
}
}
};

Powered by Google App Engine
This is Rietveld 408576698