aboutsummaryrefslogtreecommitdiff
path: root/components/interfaces/rdIRedirect.idl
diff options
context:
space:
mode:
authorEinar Egilsson2011-08-26 14:37:27 +0200
committerEinar Egilsson2011-08-26 14:37:27 +0200
commit3ac1838cba725705a96a9d7b65721b15f4ec67b1 (patch)
tree6eea260d1e5882ba1031c5bb78bd2b9ac0884fb9 /components/interfaces/rdIRedirect.idl
parent5aefd85d7975c8934b32a30a1dec68aa421cdee3 (diff)
Moved everything to a js module, removed custom xpcom interfaces
Diffstat (limited to 'components/interfaces/rdIRedirect.idl')
-rw-r--r--components/interfaces/rdIRedirect.idl29
1 files changed, 0 insertions, 29 deletions
diff --git a/components/interfaces/rdIRedirect.idl b/components/interfaces/rdIRedirect.idl
deleted file mode 100644
index 0421d8e..0000000
--- a/components/interfaces/rdIRedirect.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-/* $Id$ */
-#include "nsISupports.idl"
-#include "rdIMatchResult.idl"
-
-[scriptable, uuid(cb69ddf0-bce1-11de-8251-028037ec0200)]
-interface rdIRedirect : nsISupports {
-
- /* Attributes */
- attribute wstring exampleUrl;
- attribute wstring includePattern;
- attribute wstring excludePattern;
- attribute wstring redirectUrl;
- attribute wchar patternType;
- attribute boolean unescapeMatches;
- attribute boolean disabled;
-
- /* Methods */
- rdIRedirect clone();
- void compile();
- void copyValues(in rdIRedirect other);
- void deserialize(in wstring data);
- boolean equals(in rdIRedirect other);
- rdIMatchResult getMatch(in wstring url);
- boolean isRegex();
- boolean isWildcard();
- wstring serialize();
- rdIMatchResult test(in wstring url);
-};
-