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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripView.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/components_lazy/FilmStripView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripView.js b/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripView.js
index cab55b15d9c99e5ccf2e7501283ee50313ce6d26..a52e82fb6827587cd6ae7bf95179c8cfaab451bb 100644
--- a/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripView.js
+++ b/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripView.js
@@ -14,19 +14,19 @@ WebInspector.FilmStripView = function()
this._statusLabel = this.contentElement.createChild("div", "label");
this.reset();
this.setMode(WebInspector.FilmStripView.Modes.TimeBased);
-}
+};
/** @enum {symbol} */
WebInspector.FilmStripView.Events = {
FrameSelected: Symbol("FrameSelected"),
FrameEnter: Symbol("FrameEnter"),
FrameExit: Symbol("FrameExit"),
-}
+};
WebInspector.FilmStripView.Modes = {
TimeBased: "TimeBased",
FrameBased: "FrameBased"
-}
+};
WebInspector.FilmStripView.prototype = {
/**
@@ -204,7 +204,7 @@ WebInspector.FilmStripView.prototype = {
},
__proto__: WebInspector.HBox.prototype
-}
+};
/**
* @param {!Element} imageElement
@@ -214,7 +214,7 @@ WebInspector.FilmStripView._setImageData = function(imageElement, data)
{
if (data)
imageElement.src = "data:image/jpg;base64," + data;
-}
+};
/**
* @constructor
@@ -246,7 +246,7 @@ WebInspector.FilmStripView.Dialog = function(filmStripFrame, zeroTime)
this.contentElement.addEventListener("keydown", this._keyDown.bind(this), false);
this.setDefaultFocusedElement(this.contentElement);
this._render();
-}
+};
WebInspector.FilmStripView.Dialog.prototype = {
_resize: function()
@@ -327,4 +327,4 @@ WebInspector.FilmStripView.Dialog.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698