Bug 481087 - add getAllEncryptedLogins stub to storage-mozStorage.js. r=gavin

This commit is contained in:
Justin Dolske 2009-03-10 14:15:47 -07:00
parent 8a968e997b
commit 0f4c34fa28

View File

@ -480,6 +480,19 @@ LoginManagerStorage_mozStorage.prototype = {
},
/*
* getAllEncryptedLogins
*
* Not implemented. This interface was added to extract logins from the
* legacy storage module without decrypting them. Now that logins are in
* mozStorage, if the encrypted data is really needed it can be easily
* obtained with SQL and the mozStorage APIs.
*/
getAllEncryptedLogins : function (count) {
throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
},
/*
* removeAllLogins
*