Index: chrome/browser/resources/media_common.js |
=================================================================== |
--- chrome/browser/resources/media_common.js (revision 49178) |
+++ chrome/browser/resources/media_common.js (working copy) |
@@ -7,7 +7,7 @@ |
} |
function pathIsAudioFile(path) { |
- return /\.(mp3|m4a)$/i.test(path); |
+ return /\.(mp3|m4a|wav)$/i.test(path); |
} |
function pathIsImageFile(path) { |
@@ -15,5 +15,5 @@ |
} |
function pathIsHtmlFile(path) { |
- return /\.(htm|html)$/i.test(path); |
+ return /\.(htm|html|txt)$/i.test(path); |
} |