Skip unneeded steps on APP_SHUTDOWN.

This commit is contained in:
Brendan Dahl 2012-03-15 20:08:39 -07:00
parent 6833f64db3
commit 7c902eb612

View File

@ -79,6 +79,8 @@ function startup(aData, aReason) {
function shutdown(aData, aReason) {
if (Services.prefs.getBoolPref('extensions.pdf.js.active'))
Services.prefs.setBoolPref('extensions.pdf.js.active', false);
if (aReason == APP_SHUTDOWN)
return;
var ioService = Services.io;
var resProt = ioService.getProtocolHandler('resource')
.QueryInterface(Ci.nsIResProtocolHandler);