Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/src/GeckoContentHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/GeckoContentHandler.h')
-rw-r--r--lib/src/GeckoContentHandler.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/src/GeckoContentHandler.h b/lib/src/GeckoContentHandler.h
new file mode 100644
index 0000000..ef6f3e2
--- /dev/null
+++ b/lib/src/GeckoContentHandler.h
@@ -0,0 +1,28 @@
+#ifndef __GECKO_CONTENT_HANDLER_H__
+#define __GECKO_CONTENT_HANDLER_H__
+
+#include <nsCOMPtr.h>
+#include <nsIHelperAppLauncherDialog.h>
+
+#define GECKOCONTENTHANDLER_CID \
+{ /* 2321843e-6377-11db-967b-00e08161165f */ \
+ 0x2321843e, \
+ 0x6377, \
+ 0x11db, \
+ {0x96, 0x7b, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f} \
+}
+
+class GeckoContentHandler : public nsIHelperAppLauncherDialog
+{
+ public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIHELPERAPPLAUNCHERDIALOG
+
+ GeckoContentHandler();
+ virtual ~GeckoContentHandler();
+
+ private:
+
+};
+
+#endif /* __GECKO_CONTENT_HANDLER_H */