Bug 849764 - Replace removeObserver() calls with three params with two in testing dir. r=mak

This commit is contained in:
Xin Zhang 2013-04-06 14:46:35 -04:00
parent 9ba2b443d3
commit 512636d64c

View File

@ -95,7 +95,7 @@ SpecialPowersObserver.prototype = new SpecialPowersObserverAPI();
SpecialPowersObserver.prototype.uninit = function()
{
var obs = Services.obs;
obs.removeObserver(this, "chrome-document-global-created", false);
obs.removeObserver(this, "chrome-document-global-created");
this._removeProcessCrashObservers();
};