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

Unified Diff: chrome/browser/resources/file_manager/js/metadata/function_sequence.js

Issue 12255028: Revert 182402 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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: 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);

Powered by Google App Engine
This is Rietveld 408576698