aboutsummaryrefslogtreecommitdiff
path: root/components/interfaces/rdIRedirector.idl
diff options
context:
space:
mode:
Diffstat (limited to 'components/interfaces/rdIRedirector.idl')
-rw-r--r--components/interfaces/rdIRedirector.idl16
1 files changed, 15 insertions, 1 deletions
diff --git a/components/interfaces/rdIRedirector.idl b/components/interfaces/rdIRedirector.idl
index d229263..f586dfb 100644
--- a/components/interfaces/rdIRedirector.idl
+++ b/components/interfaces/rdIRedirector.idl
@@ -1,9 +1,23 @@
/* $Id */
#include "nsISupports.idl"
+#include "nsIFile.idl"
#include "rdIRedirect.idl"
[scriptable, uuid(cdf25d91-bce1-11de-aee1-028037ec0200)]
interface rdIRedirector : nsISupports {
- void test();
+
+ 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);
};