Index: chrome/browser/resources/file_manager/js/metadata/function_sequence.js |
=================================================================== |
--- chrome/browser/resources/file_manager/js/metadata/function_sequence.js (revision 182404) |
+++ chrome/browser/resources/file_manager/js/metadata/function_sequence.js (working copy) |
@@ -6,7 +6,6 @@ |
* @constructor |
* @class FunctionSequence to invoke steps in sequence |
* |
- * @param {string} name //TODO(JSDOC). |
* @param {Array} steps array of functions to invoke in sequence. |
* @param {Object} logger logger. |
* @param {Function} callback callback to invoke on success. |
@@ -83,7 +82,6 @@ |
* cases should be used nextStep function, which is defined in closure and thus |
* has access to internal variables of functionsequence. |
* @private |
- * @param {...} var_args //TODO(JSDOC). |
*/ |
FunctionSequence.prototype.nextStep_ = function(var_args) { |
if (this.failed_) { |
@@ -107,9 +105,7 @@ |
/** |
* This function should be called only once on start, so start sequence pipeline |
- * @param {...} var_args //TODO(JSDOC). |
*/ |
- */ |
FunctionSequence.prototype.start = function(var_args) { |
if (this.started) { |
throw new Error('"Start" method of FunctionSequence was called twice'); |
@@ -124,8 +120,6 @@ |
/** |
* Add Function object mimics to FunctionSequence |
* @private |
- * @param {*} obj //TODO(JSDOC). |
- * @param {Array.*} args /TODO(JSDOC). |
*/ |
FunctionSequence.prototype.apply_ = function(obj, args) { |
this.start.apply(this, args); |