| 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
|
| -}
|
| +};
|
|
|