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

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

Issue 575313004: Compiling file_manager, part 2: remove all warnings not caused by Object.freeze()-like enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_file_manager
Patch Set: rebase Created 6 years, 3 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 1d9f600345bab937f4e1a4af501d4e8dbd4e0bfd..aefe1ba306252fe52e67ee2b0579f39b27b5b93a 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
@@ -57,7 +57,7 @@ cr.define('cr.ui.table', function() {
/**
* Sets name of column at the given index.
* @param {number} index The index of the column.
- * @param {string} Column name.
+ * @param {string} name Column name.
*/
setName: function(index, name) {
if (index < 0 || index >= this.columns_.size - 1)
@@ -90,7 +90,7 @@ cr.define('cr.ui.table', function() {
/**
* Sets width of column at the given index.
* @param {number} index The index of the column.
- * @param {number} Column width.
+ * @param {number} width Column width.
*/
setWidth: function(index, width) {
if (index < 0 || index >= this.columns_.size - 1)
@@ -131,7 +131,7 @@ cr.define('cr.ui.table', function() {
/**
* Render the column header.
* @param {number} index The index of the column.
- * @param {cr.ui.Table} Owner table.
+ * @param {cr.ui.Table} 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_splitter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698