Added streaming support for audio

This commit is contained in:
rnvahey@gmail.com
2009-03-01 02:23:16 +07:00
parent c96e369351
commit cb90eb73d7
5 changed files with 91 additions and 37 deletions
+2 -2
View File
@@ -315,7 +315,7 @@ var Device = {
return Device.storage.result;
},
testExistence: function(file){
Device.storage.result = window.DroidGap.testDirOrFileExists(file);
Device.storage.result = window.DroidGap.testFileExists(file);
return Device.storage.result;
},
delFile: function(file){
@@ -329,7 +329,7 @@ var Device = {
createDir: function(file){
Device.storage.result = window.DroidGap.createDirectory(file);
return Device.storage.result;
}
}
},