diff options
author | Einar Egilsson | 2011-08-26 14:37:27 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-08-26 14:37:27 +0200 |
commit | 3ac1838cba725705a96a9d7b65721b15f4ec67b1 (patch) | |
tree | 6eea260d1e5882ba1031c5bb78bd2b9ac0884fb9 /components/interfaces/rdIRedirector.idl | |
parent | 5aefd85d7975c8934b32a30a1dec68aa421cdee3 (diff) |
Moved everything to a js module, removed custom xpcom interfaces
Diffstat (limited to 'components/interfaces/rdIRedirector.idl')
-rw-r--r-- | components/interfaces/rdIRedirector.idl | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/components/interfaces/rdIRedirector.idl b/components/interfaces/rdIRedirector.idl deleted file mode 100644 index 2bd2eff..0000000 --- a/components/interfaces/rdIRedirector.idl +++ /dev/null @@ -1,23 +0,0 @@ -/* $Id$ */ -#include "nsISupports.idl" -#include "nsIFile.idl" -#include "rdIRedirect.idl" - -[scriptable, uuid(cdf25d91-bce1-11de-aee1-028037ec0200)] -interface rdIRedirector : nsISupports { - - attribute boolean enabled; - readonly attribute short redirectCount; - - void addRedirect(in rdIRedirect redirect); - void debug(in wstring msg); - void deleteRedirectAt(in short index); - void exportRedirects(in nsIFile file); - rdIRedirect getRedirectAt(in short index); - wstring getRedirectUrl(in wstring url); - long importRedirects(in nsIFile file); - void reload(); - void save(); - void switchItems(in short index1, in short index2); -}; - |