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

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

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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 cdaaf902a35c8370c2e9a9d26f56b76ab9ee2028..f6609e760e3c36fe496aef2214d70ff2a48ea703 100644
--- a/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js
+++ b/third_party/WebKit/Source/devtools/front_end/animation/AnimationUI.js
@@ -31,7 +31,7 @@ WebInspector.AnimationUI = function(animation, timeline, parentElement) {
this._movementInMs = 0;
this._color = WebInspector.AnimationUI.Color(this._animation);
-}
+};
/**
* @enum {string}
@@ -41,7 +41,7 @@ WebInspector.AnimationUI.MouseEvents = {
KeyframeMove: "KeyframeMove",
StartEndpointMove: "StartEndpointMove",
FinishEndpointMove: "FinishEndpointMove"
-}
+};
WebInspector.AnimationUI.prototype = {
/**
@@ -370,7 +370,7 @@ WebInspector.AnimationUI.prototype = {
this._animation.remoteObjectPromise().then(showContextMenu);
event.consume(true);
}
-}
+};
WebInspector.AnimationUI.Options = {
AnimationHeight: 26,
@@ -378,7 +378,7 @@ WebInspector.AnimationUI.Options = {
AnimationMargin: 7,
EndpointsClickRegionSize: 10,
GridCanvasHeight: 40
-}
+};
WebInspector.AnimationUI.Colors = {
"Purple": WebInspector.Color.parse("#9C27B0"),
@@ -391,7 +391,7 @@ WebInspector.AnimationUI.Colors = {
"Green": WebInspector.Color.parse("#0F9D58"),
"Brown": WebInspector.Color.parse("#795548"),
"Cyan": WebInspector.Color.parse("#00BCD4")
-}
+};
/**
* @param {!WebInspector.AnimationModel.Animation} animation
@@ -402,4 +402,4 @@ WebInspector.AnimationUI.Color = function(animation)
var names = Object.keys(WebInspector.AnimationUI.Colors);
var color = WebInspector.AnimationUI.Colors[names[String.hashCode(animation.name() || animation.id()) % names.length]];
return color.asString(WebInspector.Color.Format.RGB);
-}
+};

Powered by Google App Engine
This is Rietveld 408576698