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

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

Issue 12207152: [Cleanup] Files.app: adds '@private' annotations to JSdoc of private methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/metadata/function_sequence.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/metadata/function_parallel.js
diff --git a/chrome/browser/resources/file_manager/js/metadata/function_parallel.js b/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
index 612501cdcc1fb36b51d474cd20a436b9fd4f4f79..e8734b309e56cc0d623ec0ed0f7a09cad1b2e609 100644
--- a/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
+++ b/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
@@ -31,6 +31,7 @@ function FunctionParallel(name, steps, logger, callback, failureCallback) {
/**
* Error handling function, which fires error callback.
*
+ * @private
* @param err error message.
*/
FunctionParallel.prototype.onError_ = function(err) {
@@ -44,6 +45,7 @@ FunctionParallel.prototype.onError_ = function(err) {
* Advances to next step. This method should not be used externally. In external
* cases should be used nextStep function, which is defined in closure and thus
* has access to internal variables of functionsequence.
+ * @private
*/
FunctionParallel.prototype.nextStep_ = function() {
if (--this.remaining == 0 && !this.failed_) {
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/metadata/function_sequence.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698