diff options
Diffstat (limited to 'components/redirector.component.js')
-rw-r--r-- | components/redirector.component.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/redirector.component.js b/components/redirector.component.js index 6dce455..e5f20f4 100644 --- a/components/redirector.component.js +++ b/components/redirector.component.js @@ -6,6 +6,7 @@ Cr = Components.results; Cc = Components.classes;
const loader = Cc["@mozilla.org/moz/jssubscript-loader;1"].getService(Ci.mozIJSSubScriptLoader);
+var redirector = null;
function Redirector() {
this.init();
this.wrappedJSObject = this;
@@ -31,6 +32,9 @@ xpcomInfo.QueryInterface = XPCOMUtils.generateQI([Ci.nsIContentPolicy, Ci.nsICh xpcomInfo._xpcom_factory = {
createInstance: function(outer, iid) {
if (outer) throw Cr.NS_ERROR_NO_AGGREGATION;
+ if (redirector == null) {
+ redirector = new Redirector();
+ }
return redirector.QueryInterface(iid);
}
};
@@ -38,5 +42,3 @@ xpcomInfo._xpcom_factory = { function NSGetModule(compMgr, fileSpec) {
return XPCOMUtils.generateModule([Redirector]);
}
-
-const redirector = new Redirector();
|