2006-11-15 13:56:19 +01:00
|
|
|
#ifndef __GECKO_CONTENT_HANDLER_H__
|
|
|
|
#define __GECKO_CONTENT_HANDLER_H__
|
2006-10-25 10:18:43 +02:00
|
|
|
|
|
|
|
#include <nsCOMPtr.h>
|
|
|
|
#include <nsIHelperAppLauncherDialog.h>
|
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
#define GECKOCONTENTHANDLER_CID \
|
2006-10-25 10:18:43 +02:00
|
|
|
{ /* 2321843e-6377-11db-967b-00e08161165f */ \
|
|
|
|
0x2321843e, \
|
|
|
|
0x6377, \
|
|
|
|
0x11db, \
|
|
|
|
{0x96, 0x7b, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f} \
|
|
|
|
}
|
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
class GeckoContentHandler : public nsIHelperAppLauncherDialog
|
2006-10-25 10:18:43 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIHELPERAPPLAUNCHERDIALOG
|
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
GeckoContentHandler();
|
|
|
|
virtual ~GeckoContentHandler();
|
2006-10-25 10:18:43 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
#endif /* __GECKO_CONTENT_HANDLER_H */
|