#ifndef __GECKO_DOWNLOAD_H__ #define __GECKO_DOWNLOAD_H__ #include #include #include #include #include #include #include #include #define GECKODOWNLOAD_CID \ { /* b1813bbe-6518-11db-967e-00e08161165f */ \ 0xb1813bbe, \ 0x6518, \ 0x11db, \ {0x96, 0x7e, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f} \ } class GeckoDownload : public nsITransfer { public: GeckoDownload(); virtual ~GeckoDownload(); NS_DECL_ISUPPORTS NS_DECL_NSIWEBPROGRESSLISTENER NS_DECL_NSIWEBPROGRESSLISTENER2 NS_DECL_NSITRANSFER protected: nsIURI *mSource; nsCString mTargetFileName; nsIMIMEInfo *mMIMEInfo; nsILocalFile *mTempFile; }; #endif // __GECKO_DOWNLOAD_H__