I use
Components.classes["@mozilla.org/network/cache-service;1"].getService(Components.interfaces.nsICacheService);
to manipulate http cache when developing Firefox extension.
But after I upgrade to Firefox 38 esr, this interface throws error when calling its function
[Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsICacheService.visitEntries]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)"
And I didn't find it obsolete in MDN, so anyone knows why? Thanks a lot.
http://code.metager.de/source/xref/mozilla/firefox/netwerk/cache/nsICacheService.idl
This looks like a hint * @throws NS_ERROR_NOT_IMPLEMENTED when the cache v2 is prefered to use.
https://bugzilla.mozilla.org/show_bug.cgi?id=913807
I’m thinking that all we need to do is change 1 to 2 in this line in the
var cacheService = cc["@mozilla.org/network/cache-service;1"] .getService(ci.nsICacheService);