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

Unified Diff: ui/file_manager/file_manager/foreground/js/file_watcher.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/file_watcher.js
diff --git a/ui/file_manager/file_manager/foreground/js/file_watcher.js b/ui/file_manager/file_manager/foreground/js/file_watcher.js
index 12da4433dffd9076fa1e6011679b23d4f252962b..d55af870451958df1160b7322d8229d37271c737 100644
--- a/ui/file_manager/file_manager/foreground/js/file_watcher.js
+++ b/ui/file_manager/file_manager/foreground/js/file_watcher.js
@@ -128,7 +128,7 @@ FileWatcher.prototype.changeWatchedDirectory = function(entry, callback) {
callback,
function() {
console.error(
- 'Unable to change the watched directory to: ' + entry.toURL());
+ 'Unable to change the watched directory to: ' + entry.toURL());
callback();
});
} else {
@@ -199,20 +199,20 @@ FileWatcher.prototype.changeWatchedEntry_ = function(
callback();
}.bind(this));
this.filesystemMetadataObserverId_ = this.metadataCache_.addObserver(
- entry,
- MetadataCache.CHILDREN,
- 'filesystem',
- this.onFilesystemMetadataChanged_.bind(this));
+ entry,
+ MetadataCache.CHILDREN,
+ 'filesystem',
+ this.onFilesystemMetadataChanged_.bind(this));
this.thumbnailMetadataObserverId_ = this.metadataCache_.addObserver(
- entry,
- MetadataCache.CHILDREN,
- 'thumbnail',
- this.onThumbnailMetadataChanged_.bind(this));
+ entry,
+ MetadataCache.CHILDREN,
+ 'thumbnail',
+ this.onThumbnailMetadataChanged_.bind(this));
this.externalMetadataObserverId_ = this.metadataCache_.addObserver(
- entry,
- MetadataCache.CHILDREN,
- 'external',
- this.onExternalMetadataChanged_.bind(this));
+ entry,
+ MetadataCache.CHILDREN,
+ 'external',
+ this.onExternalMetadataChanged_.bind(this));
}.bind(this));
}.bind(this);

Powered by Google App Engine
This is Rietveld 408576698