diff options
author | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-09-04 22:53:16 +0200 |
commit | 4b612baf4f29178214edec130856d83a40bf473d (patch) | |
tree | 20e36e3fcf7a24e829640c2fd605622f14af0edc /chrome/code/component.js | |
parent | 8fb65cf8aeaaf66636698310c0168929fc1a2ce0 (diff) |
Total restructuring of files and deletion of old files
Diffstat (limited to 'chrome/code/component.js')
-rw-r--r-- | chrome/code/component.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/chrome/code/component.js b/chrome/code/component.js deleted file mode 100644 index 453d134..0000000 --- a/chrome/code/component.js +++ /dev/null @@ -1,21 +0,0 @@ -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); -Ci = Components.interfaces; -Cr = Components.results; - -Components.utils.import("chrome://redirector/content/code/redirector.js"); - -function RedirectorComponent() { } - -RedirectorComponent.prototype = { - classDescription: "My Hello World Javascript XPCOM Component", - classID: Components.ID("{b7a7a54f-0581-47ff-b086-d6920cb7a3f7}"), - contractID: "@einaregilsson.com/redirector;1", - QueryInterface: function(iid) { - if (iid.equals(Ci.nsISupports) || iid.equals(Ci.nsIContentPolicy) || iid.equals(Ci.nsIChannelEventSink)) { - return Redirector; - } - throw Cr.NS_ERROR_NO_INTERFACE; - } -}; - -const NSGetFactory = XPCOMUtils.generateNSGetFactory([RedirectorComponent]); |