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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripModel.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/FilmStripModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripModel.js b/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripModel.js
index f9533734b8d6ec691d2747552bdf7197780329c8..3472e161e72544fec37d754fc5c54f3d425f170a 100644
--- a/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/components_lazy/FilmStripModel.js
@@ -12,14 +12,14 @@
WebInspector.FilmStripModel = function(tracingModel, zeroTime)
{
this.reset(tracingModel, zeroTime);
-}
+};
WebInspector.FilmStripModel._category = "disabled-by-default-devtools.screenshot";
WebInspector.FilmStripModel.TraceEvents = {
CaptureFrame: "CaptureFrame",
Screenshot: "Screenshot"
-}
+};
WebInspector.FilmStripModel.prototype = {
/**
@@ -87,7 +87,7 @@ WebInspector.FilmStripModel.prototype = {
var index = this._frames.upperBound(timestamp, (timestamp, frame) => timestamp - frame.timestamp) - 1;
return index >= 0 ? this._frames[index] : null;
}
-}
+};
/**
* @constructor
@@ -104,7 +104,7 @@ WebInspector.FilmStripModel.Frame = function(model, timestamp, index)
this._imageData = null;
/** @type {?WebInspector.TracingModel.ObjectSnapshot} */
this._snapshot = null;
-}
+};
/**
* @param {!WebInspector.FilmStripModel} model
@@ -117,7 +117,7 @@ WebInspector.FilmStripModel.Frame._fromEvent = function(model, event, index)
var frame = new WebInspector.FilmStripModel.Frame(model, event.startTime, index);
frame._imageData = event.args["data"];
return frame;
-}
+};
/**
* @param {!WebInspector.FilmStripModel} model
@@ -130,7 +130,7 @@ WebInspector.FilmStripModel.Frame._fromSnapshot = function(model, snapshot, inde
var frame = new WebInspector.FilmStripModel.Frame(model, snapshot.startTime, index);
frame._snapshot = snapshot;
return frame;
-}
+};
WebInspector.FilmStripModel.Frame.prototype = {
/**
@@ -151,4 +151,4 @@ WebInspector.FilmStripModel.Frame.prototype = {
return /** @type {!Promise<?string>} */ (this._snapshot.objectPromise());
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698