| Index: ui/webui/resources/js/cr/ui/table/table_column.js
|
| diff --git a/ui/webui/resources/js/cr/ui/table/table_column.js b/ui/webui/resources/js/cr/ui/table/table_column.js
|
| index c5febceeebc117a569834c6f98d11caecad529d1..1a5ef2b08dee168ef939ba0f900e5956cc06101c 100644
|
| --- a/ui/webui/resources/js/cr/ui/table/table_column.js
|
| +++ b/ui/webui/resources/js/cr/ui/table/table_column.js
|
| @@ -51,7 +51,7 @@ cr.define('cr.ui.table', function() {
|
| * Renders table cell. This is the default render function.
|
| * @param {*} dataItem The data item to be rendered.
|
| * @param {string} columnId The column id.
|
| - * @param {cr.ui.Table} table The table.
|
| + * @param {Element} table The table.
|
| * @return {HTMLElement} Rendered element.
|
| */
|
| renderFunction_: function(dataItem, columnId, table) {
|
| @@ -64,7 +64,7 @@ cr.define('cr.ui.table', function() {
|
|
|
| /**
|
| * Renders table header. This is the default render function.
|
| - * @param {cr.ui.Table} table The table.
|
| + * @param {Element} table The table.
|
| * @return {Text} Rendered text node.
|
| */
|
| headerRenderFunction_: function(table) {
|
| @@ -121,13 +121,13 @@ cr.define('cr.ui.table', function() {
|
|
|
| /**
|
| * The column render function.
|
| - * @type {function(*, string, cr.ui.Table): HTMLElement}
|
| + * @type {function(*, string, Element): HTMLElement}
|
| */
|
| cr.defineProperty(TableColumn, 'renderFunction');
|
|
|
| /**
|
| * The column header render function.
|
| - * @type {function(cr.ui.Table): Text}
|
| + * @type {function(Element): Text}
|
| */
|
| cr.defineProperty(TableColumn, 'headerRenderFunction');
|
|
|
|
|