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

Unified Diff: ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js

Issue 936243004: Files.app: Start to use new metadata model in Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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.

Powered by Google App Engine
This is Rietveld 408576698