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

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

Issue 12212187: [Cleanup] Files.app: Misc style fixes in Javascript code. (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
diff --git a/chrome/browser/resources/file_manager/js/metadata/function_sequence.js b/chrome/browser/resources/file_manager/js/metadata/function_sequence.js
index 0d34289da80010f27cfd691d14c300bc9cd6b900..7209ea6daeb817221c4bf07e5986eaa511be07d3 100644
--- a/chrome/browser/resources/file_manager/js/metadata/function_sequence.js
+++ b/chrome/browser/resources/file_manager/js/metadata/function_sequence.js
@@ -3,7 +3,6 @@
// found in the LICENSE file.
/**
- * @constructor
* @class FunctionSequence to invoke steps in sequence
*
* @param {string} name //TODO(JSDOC).
@@ -11,6 +10,7 @@
* @param {Object} logger logger.
* @param {Function} callback callback to invoke on success.
* @param {Function} failureCallback callback to invoke on failure.
+ * @constructor
*/
function FunctionSequence(name, steps, logger, callback, failureCallback) {
// Private variables hidden in closure
@@ -51,7 +51,7 @@ FunctionSequence.prototype.setFailureCallback = function(failureCallback) {
* Error handling function, which traces current error step, stops sequence
* advancing and fires error callback.
*
- * @param {string} err Error message
+ * @param {string} err Error message.
* @private
*/
FunctionSequence.prototype.onError_ = function(err) {

Powered by Google App Engine
This is Rietveld 408576698