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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.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/ui_lazy/TimelineOverviewPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
index 99eab1ba454ffdcf237916fe42715793a161cea9..7c10c007dc2cfd117d5e7e90c1d1ebb5a3a79d3b 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
@@ -60,7 +60,7 @@ WebInspector.TimelineOverviewPane = function(prefix)
this._cursorEnabled = false;
this._cursorPosition = 0;
this._lastWidth = 0;
-}
+};
/** @enum {symbol} */
WebInspector.TimelineOverviewPane.Events = {
@@ -341,7 +341,7 @@ WebInspector.TimelineOverviewPane.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -351,11 +351,11 @@ WebInspector.TimelineOverviewPane.PopoverContents = function()
{
WebInspector.VBox.call(this, true);
this.contentElement.classList.add("timeline-overview-popover");
-}
+};
WebInspector.TimelineOverviewPane.PopoverContents.prototype = {
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -364,7 +364,7 @@ WebInspector.TimelineOverviewPane.PopoverContents.prototype = {
WebInspector.TimelineOverviewCalculator = function()
{
this.reset();
-}
+};
WebInspector.TimelineOverviewCalculator.prototype = {
/**
@@ -466,14 +466,14 @@ WebInspector.TimelineOverviewCalculator.prototype = {
{
return this._maximumBoundary - this._minimumBoundary;
}
-}
+};
/**
* @interface
*/
WebInspector.TimelineOverview = function()
{
-}
+};
WebInspector.TimelineOverview.prototype = {
/**
@@ -517,7 +517,7 @@ WebInspector.TimelineOverview.prototype = {
timelineStarted: function() { },
timelineStopped: function() { },
-}
+};
/**
* @constructor
@@ -531,7 +531,7 @@ WebInspector.TimelineOverviewBase = function()
this._calculator = null;
this._canvas = this.element.createChild("canvas", "fill");
this._context = this._canvas.getContext("2d");
-}
+};
WebInspector.TimelineOverviewBase.prototype = {
/**
@@ -639,4 +639,4 @@ WebInspector.TimelineOverviewBase.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698