| Index: chrome/browser/resources/file_manager/js/id3_parser.js
|
| diff --git a/chrome/browser/resources/file_manager/js/id3_parser.js b/chrome/browser/resources/file_manager/js/id3_parser.js
|
| index 58ee2c826ef2ee9851b38198d04c9b17265ccce2..7777cdd3e675cec7fa81da776adb3bccc53e3309 100644
|
| --- a/chrome/browser/resources/file_manager/js/id3_parser.js
|
| +++ b/chrome/browser/resources/file_manager/js/id3_parser.js
|
| @@ -7,16 +7,11 @@ importScripts('function_parallel.js');
|
| importScripts('util.js');
|
|
|
| function Id3Parser(parent) {
|
| - MetadataParser.apply(this, [parent]);
|
| - this.verbose = true;
|
| + MetadataParser.call(this, parent, 'id3', /\.(mp3)$/i);
|
| }
|
|
|
| -Id3Parser.parserType = 'id3';
|
| -
|
| Id3Parser.prototype = {__proto__: MetadataParser.prototype};
|
|
|
| -Id3Parser.prototype.urlFilter = /\.(mp3)$/i;
|
| -
|
| /**
|
| * Reads synchsafe integer.
|
| * 'SynchSafe' term is taken from id3 documentation.
|
|
|