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 c8ff67d68fce0ee6bd3b8ff33510090c28c45a92..6389ed9cef41d5a54aad4592ba0137ec313c7ca8 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 |
@@ -80,7 +80,7 @@ MetadataDispatcher.prototype.init_ = function() { |
// Inform our owner that we're done initializing. |
// If we need to pass more data back, we can add it to the param array. |
this.postMessage('initialized', [this.parserRegexp_]); |
- this.log('initialized with URL filter ' + this.parserRegexp_); |
+ this.vlog('initialized with URL filter ' + this.parserRegexp_); |
}; |
/** |
@@ -199,13 +199,13 @@ MetadataDispatcher.prototype.processOneFile = function(fileURL, callback) { |
function getEntry(parser) { |
webkitResolveLocalFileSystemURL( |
fileURL, |
- function(entry) { nextStep(entry, parser) }, |
+ function(entry) { nextStep(entry, parser); }, |
onError); |
}, |
// Step three, turn the entry into a file. |
function getFile(entry, parser) { |
- entry.file(function(file) { nextStep(file, parser) }, onError); |
+ entry.file(function(file) { nextStep(file, parser); }, onError); |
}, |
// Step four, parse the file content. |