Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/SortableDataGrid.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/SortableDataGrid.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/SortableDataGrid.js |
index d109767564296c490b9cd572572063444d38431a..1a893b6fcf93e4b6e57cf29c78e6896e0dd14c87 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/SortableDataGrid.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/SortableDataGrid.js |
@@ -9,11 +9,10 @@ |
* @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback |
* @param {function(!WebInspector.DataGridNode)=} deleteCallback |
* @param {function()=} refreshCallback |
- * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback |
*/ |
-WebInspector.SortableDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback) |
+WebInspector.SortableDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback) |
{ |
- WebInspector.ViewportDataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback); |
+ WebInspector.ViewportDataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback); |
/** @type {!WebInspector.SortableDataGrid.NodeComparator} */ |
this._sortingFunction = WebInspector.SortableDataGrid.TrivialComparator; |
this.setRootNode(new WebInspector.SortableDataGridNode()); |