2

С сегодняшней последней версией Chrome для Android я могу запросить постоянное хранилище IndexedDB с помощью navigator.webkitPersistentStorage.requestQuota?Используется ли navigator.webkitPersistentStorage.requestQuota для IndexedDB?

var requestedBytes = 1024*1024*1024; 

navigator.webkitPersistentStorage.requestQuota (
    requestedBytes, function(grantedBytes) { 
     console.log('we were granted ', grantedBytes, 'bytes'); 

    }, function(e) { console.log('Error', e); } 
); 

Или же navigator.webkitPersistentStorage.requestQuota еще применяется только к FileSystem API?

ответ