Index: ui/webui/resources/js/cr/ui/table/table_column_model.js |
diff --git a/ui/webui/resources/js/cr/ui/table/table_column_model.js b/ui/webui/resources/js/cr/ui/table/table_column_model.js |
index d451d609f4aa9f4b832baa6ed5198505f5bbcba8..312f4352033b0a34c84d07bdb4d65f0b8ad8baaf 100644 |
--- a/ui/webui/resources/js/cr/ui/table/table_column_model.js |
+++ b/ui/webui/resources/js/cr/ui/table/table_column_model.js |
@@ -112,7 +112,7 @@ cr.define('cr.ui.table', function() { |
/** |
* Returns render function for the column at the given index. |
* @param {number} index The index of the column. |
- * @return {function(*, string, cr.ui.Table): HTMLElement} Render function. |
+ * @return {function(*, string, Element): HTMLElement} Render function. |
*/ |
getRenderFunction: function(index) { |
return this.columns_[index].renderFunction; |
@@ -121,7 +121,7 @@ cr.define('cr.ui.table', function() { |
/** |
* Sets render function for the column at the given index. |
* @param {number} index The index of the column. |
- * @param {function(*, string, cr.ui.Table): HTMLElement} renderFunction |
+ * @param {function(*, string, Element): HTMLElement} renderFunction |
* Render function. |
*/ |
setRenderFunction: function(index, renderFunction) { |
@@ -137,7 +137,7 @@ cr.define('cr.ui.table', function() { |
/** |
* Render the column header. |
* @param {number} index The index of the column. |
- * @param {cr.ui.Table} table Owner table. |
+ * @param {Element} table Owner table. |
*/ |
renderHeader: function(index, table) { |
var c = this.columns_[index]; |