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

Unified Diff: ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js

Issue 571453002: Correct indentation, JSDoc, etc... to comply with closure linter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/file_manager/file_manager/foreground/js/metadata/function_sequence.js
diff --git a/ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js b/ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js
index 583232682d8df1c74894108a011a1de7e05a7345..6a1bf0845f211b2730da7c443dc090f7215c01ee 100644
--- a/ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js
+++ b/ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js
@@ -36,7 +36,7 @@ function FunctionSequence(name, steps, logger, callback, failureCallback) {
* @param {function} callback New callback to call on succeed.
*/
FunctionSequence.prototype.setCallback = function(callback) {
- this.callback_ = callback;
+ this.callback_ = callback;
};
/**
@@ -45,7 +45,7 @@ FunctionSequence.prototype.setCallback = function(callback) {
* @param {function} failureCallback New callback to call on failure.
*/
FunctionSequence.prototype.setFailureCallback = function(failureCallback) {
- this.failureCallback_ = failureCallback;
+ this.failureCallback_ = failureCallback;
};

Powered by Google App Engine
This is Rietveld 408576698