Index: Source/devtools/front_end/ui_lazy/DataGrid.js |
diff --git a/Source/devtools/front_end/ui_lazy/DataGrid.js b/Source/devtools/front_end/ui_lazy/DataGrid.js |
index c312c0bd34c80c5d072e62fc0a102ec69ba707ac..83ef0a1249bb47bb7c7aae5e92b83e1ff29aa9e4 100644 |
--- a/Source/devtools/front_end/ui_lazy/DataGrid.js |
+++ b/Source/devtools/front_end/ui_lazy/DataGrid.js |
@@ -25,7 +25,7 @@ |
/** |
* @constructor |
- * @extends {WebInspector.View} |
+ * @extends {WebInspector.Widget} |
* @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray |
* @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback |
* @param {function(!WebInspector.DataGridNode)=} deleteCallback |
@@ -34,7 +34,7 @@ |
*/ |
WebInspector.DataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback) |
{ |
- WebInspector.View.call(this); |
+ WebInspector.Widget.call(this); |
this.registerRequiredCSS("ui_lazy/dataGrid.css"); |
this.element.className = "data-grid"; // Override |
@@ -1066,7 +1066,7 @@ WebInspector.DataGrid.prototype = { |
CenterResizerOverBorderAdjustment: 3, |
- __proto__: WebInspector.View.prototype |
+ __proto__: WebInspector.Widget.prototype |
} |
/** @enum {string} */ |