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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.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/DataGrid.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
index a58fdda6660666f19c8bd082467a5ca12abbf7cf..db1e4372e10f95dd18f2a0fcd03d4c5c3a275ae0 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/DataGrid.js
@@ -125,7 +125,7 @@ WebInspector.DataGrid = function(columnsArray, editCallback, deleteCallback, ref
this._cornerWidth = WebInspector.DataGrid.CornerWidth;
/** @type {!WebInspector.DataGrid.ResizeMethod} */
this._resizeMethod = WebInspector.DataGrid.ResizeMethod.Nearest;
-}
+};
// Keep in sync with .data-grid col.corner style rule.
WebInspector.DataGrid.CornerWidth = 14;
@@ -156,19 +156,19 @@ WebInspector.DataGrid.Events = {
SortingChanged: Symbol("SortingChanged"),
ColumnsResized: Symbol("ColumnsResized"),
PaddingChanged: Symbol("PaddingChanged")
-}
+};
/** @enum {string} */
WebInspector.DataGrid.Order = {
Ascending: "sort-ascending",
Descending: "sort-descending"
-}
+};
/** @enum {string} */
WebInspector.DataGrid.Align = {
Center: "center",
Right: "right"
-}
+};
WebInspector.DataGrid._preferredWidthSymbol = Symbol("preferredWidth");
@@ -1191,14 +1191,14 @@ WebInspector.DataGrid.prototype = {
CenterResizerOverBorderAdjustment: 3,
__proto__: WebInspector.Object.prototype
-}
+};
/** @enum {string} */
WebInspector.DataGrid.ResizeMethod = {
Nearest: "nearest",
First: "first",
Last: "last"
-}
+};
/**
* @constructor
@@ -1240,7 +1240,7 @@ WebInspector.DataGridNode = function(data, hasChildren)
this.nextSibling = null;
/** @type {number} */
this.disclosureToggleWidth = 10;
-}
+};
WebInspector.DataGridNode.prototype = {
/** @type {boolean} */
@@ -1888,7 +1888,7 @@ WebInspector.DataGridNode.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -1899,7 +1899,7 @@ WebInspector.CreationDataGridNode = function(data, hasChildren)
WebInspector.DataGridNode.call(this, data, hasChildren);
/** @type {boolean} */
this.isCreationNode = true;
-}
+};
WebInspector.CreationDataGridNode.prototype = {
makeNormal: function()
@@ -1908,7 +1908,7 @@ WebInspector.CreationDataGridNode.prototype = {
},
__proto__: WebInspector.DataGridNode.prototype
-}
+};
/**
* @constructor
@@ -1920,7 +1920,7 @@ WebInspector.DataGridWidget = function(dataGrid)
WebInspector.VBox.call(this);
this._dataGrid = dataGrid;
this.element.appendChild(dataGrid.element);
-}
+};
WebInspector.DataGridWidget.prototype = {
/**
@@ -1968,4 +1968,4 @@ WebInspector.DataGridWidget.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698