Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(534)

Unified Diff: ui/webui/resources/js/cr/ui/table/table_column_model.js

Issue 2779663002: Compile cr.ui.Table and cr.ui.table.* in gyp v2 (Closed)
Patch Set: . Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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];
« no previous file with comments | « ui/webui/resources/js/cr/ui/table/table_column.js ('k') | ui/webui/resources/js/cr/ui/table/table_header.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698