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

Unified Diff: ui/file_manager/file_manager/background/js/drive_sync_handler.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/background/js/drive_sync_handler.js
diff --git a/ui/file_manager/file_manager/background/js/drive_sync_handler.js b/ui/file_manager/file_manager/background/js/drive_sync_handler.js
index b0182c202fc316d6eb8ede979d25c64b2c736fb8..9ddb756d6dabee932b467c31507b464f871ea703 100644
--- a/ui/file_manager/file_manager/background/js/drive_sync_handler.js
+++ b/ui/file_manager/file_manager/background/js/drive_sync_handler.js
@@ -33,11 +33,11 @@ function DriveSyncHandler(progressCenter) {
this.item_ = new ProgressCenterItem();
this.item_.id = 'drive-sync';
- /**
- * If the property is true, this item is syncing.
- * @type {boolean}
- * @private
- */
+ /**
+ * If the property is true, this item is syncing.
+ * @type {boolean}
+ * @private
+ */
this.syncing_ = false;
/**
@@ -81,7 +81,7 @@ DriveSyncHandler.prototype = {
/**
* Handles file transfer updated events.
- * @param {Array.<FileTransferStatus>} statusList List of drive status.
+ * @param {FileTransferStatus} status Transfer status.
* @private
*/
DriveSyncHandler.prototype.onFileTransfersUpdated_ = function(status) {

Powered by Google App Engine
This is Rietveld 408576698