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

Unified Diff: ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.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/metadata_dispatcher.js
diff --git a/ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js b/ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js
index aa957a4b4085b04700debc7313461807181a1004..9f886680ae28fc087fba0c128fa24efe303d943d 100644
--- a/ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js
+++ b/ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js
@@ -92,7 +92,7 @@ MetadataDispatcher.prototype.init_ = function() {
MetadataDispatcher.prototype.request_ = function(fileURL) {
try {
this.processOneFile(fileURL, function callback(metadata) {
- this.postMessage('result', [fileURL, metadata]);
+ this.postMessage('result', [fileURL, metadata]);
}.bind(this));
} catch (ex) {
this.error(fileURL, ex);
@@ -173,8 +173,8 @@ MetadataDispatcher.prototype.processOneFile = function(fileURL, callback) {
metadata);
}
- var steps =
- [ // Step one, find the parser matching the url.
+ var steps = [
+ // Step one, find the parser matching the url.
function detectFormat() {
for (var i = 0; i != self.parserInstances_.length; i++) {
var parser = self.parserInstances_[i];

Powered by Google App Engine
This is Rietveld 408576698