Searched refs:SimpleImageParser (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/ |
D | image_parsers.js | 9 function SimpleImageParser(parent, type, urlFilter, headerSize) { class 14 SimpleImageParser.prototype = {__proto__: ImageParser.prototype}; 22 SimpleImageParser.prototype.parse = function( 40 SimpleImageParser.call(this, parent, 'png', /\.png$/i, 24); 43 PngParser.prototype = {__proto__: SimpleImageParser.prototype}; 69 SimpleImageParser.call(this, parent, 'bmp', /\.bmp$/i, 28); 72 BmpParser.prototype = {__proto__: SimpleImageParser.prototype}; 94 SimpleImageParser.call(this, parent, 'gif', /\.Gif$/i, 10); 97 GifParser.prototype = {__proto__: SimpleImageParser.prototype}; 118 SimpleImageParser.call(this, parent, 'webp', /\.webp$/i, 30); [all …]
|