|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/toolkit/components/downloads/nsIDownloadManager.idl
*/
#ifndef __gen_nsIDownloadManager_h__
#define __gen_nsIDownloadManager_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIURI; /* forward declaration */
class nsIFile; /* forward declaration */
class nsIDownload; /* forward declaration */
class nsICancelable; /* forward declaration */
class nsIMIMEInfo; /* forward declaration */
class nsIDownloadProgressListener; /* forward declaration */
class nsISimpleEnumerator; /* forward declaration */
class mozIStorageConnection; /* forward declaration */
/* starting interface: nsIDownloadManager */
#define NS_IDOWNLOADMANAGER_IID_STR "bacca1ac-1b01-4a6f-9e91-c2ead1f7d2c0"
#define NS_IDOWNLOADMANAGER_IID \
{0xbacca1ac, 0x1b01, 0x4a6f, \
{ 0x9e, 0x91, 0xc2, 0xea, 0xd1, 0xf7, 0xd2, 0xc0 }}
class NS_NO_VTABLE nsIDownloadManager : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOWNLOADMANAGER_IID)
enum {
DOWNLOAD_TYPE_DOWNLOAD = 0,
DOWNLOAD_NOTSTARTED = -1,
DOWNLOAD_DOWNLOADING = 0,
DOWNLOAD_FINISHED = 1,
DOWNLOAD_FAILED = 2,
DOWNLOAD_CANCELED = 3,
DOWNLOAD_PAUSED = 4,
DOWNLOAD_QUEUED = 5,
DOWNLOAD_BLOCKED_PARENTAL = 6,
DOWNLOAD_SCANNING = 7,
DOWNLOAD_DIRTY = 8,
DOWNLOAD_BLOCKED_POLICY = 9
};
/* nsIDownload addDownload (in short aDownloadType, in nsIURI aSource, in nsIURI aTarget, in AString aDisplayName, in nsIMIMEInfo aMIMEInfo, in PRTime aStartTime, in nsIFile aTempFile, in nsICancelable aCancelable); */
NS_IMETHOD AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, nsIDownload * *_retval) = 0;
/* nsIDownload getDownload (in unsigned long aID); */
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) = 0;
/* void cancelDownload (in unsigned long aID); */
NS_IMETHOD CancelDownload(uint32_t aID) = 0;
/* void removeDownload (in unsigned long aID); */
NS_IMETHOD RemoveDownload(uint32_t aID) = 0;
/* void removeDownloadsByTimeframe (in long long aBeginTime, in long long aEndTime); */
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) = 0;
/* void pauseDownload (in unsigned long aID); */
NS_IMETHOD PauseDownload(uint32_t aID) = 0;
/* void resumeDownload (in unsigned long aID); */
NS_IMETHOD ResumeDownload(uint32_t aID) = 0;
/* void retryDownload (in unsigned long aID); */
NS_IMETHOD RetryDownload(uint32_t aID) = 0;
/* readonly attribute mozIStorageConnection DBConnection; */
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) = 0;
/* readonly attribute boolean canCleanUp; */
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) = 0;
/* void cleanUp (); */
NS_IMETHOD CleanUp(void) = 0;
/* readonly attribute long activeDownloadCount; */
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) = 0;
/* readonly attribute nsISimpleEnumerator activeDownloads; */
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) = 0;
/* void addListener (in nsIDownloadProgressListener aListener); */
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) = 0;
/* void removeListener (in nsIDownloadProgressListener aListener); */
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) = 0;
/* readonly attribute nsIFile defaultDownloadsDirectory; */
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) = 0;
/* readonly attribute nsIFile userDownloadsDirectory; */
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDownloadManager, NS_IDOWNLOADMANAGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOWNLOADMANAGER \
NS_IMETHOD AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, nsIDownload * *_retval); \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval); \
NS_IMETHOD CancelDownload(uint32_t aID); \
NS_IMETHOD RemoveDownload(uint32_t aID); \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime); \
NS_IMETHOD PauseDownload(uint32_t aID); \
NS_IMETHOD ResumeDownload(uint32_t aID); \
NS_IMETHOD RetryDownload(uint32_t aID); \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection); \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp); \
NS_IMETHOD CleanUp(void); \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount); \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads); \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener); \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener); \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory); \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOWNLOADMANAGER(_to) \
NS_IMETHOD AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, nsIDownload * *_retval) { return _to AddDownload(aDownloadType, aSource, aTarget, aDisplayName, aMIMEInfo, aStartTime, aTempFile, aCancelable, _retval); } \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) { return _to GetDownload(aID, _retval); } \
NS_IMETHOD CancelDownload(uint32_t aID) { return _to CancelDownload(aID); } \
NS_IMETHOD RemoveDownload(uint32_t aID) { return _to RemoveDownload(aID); } \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) { return _to RemoveDownloadsByTimeframe(aBeginTime, aEndTime); } \
NS_IMETHOD PauseDownload(uint32_t aID) { return _to PauseDownload(aID); } \
NS_IMETHOD ResumeDownload(uint32_t aID) { return _to ResumeDownload(aID); } \
NS_IMETHOD RetryDownload(uint32_t aID) { return _to RetryDownload(aID); } \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) { return _to GetDBConnection(aDBConnection); } \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) { return _to GetCanCleanUp(aCanCleanUp); } \
NS_IMETHOD CleanUp(void) { return _to CleanUp(); } \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) { return _to GetActiveDownloadCount(aActiveDownloadCount); } \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) { return _to GetActiveDownloads(aActiveDownloads); } \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) { return _to AddListener(aListener); } \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) { return _to RemoveListener(aListener); } \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) { return _to GetDefaultDownloadsDirectory(aDefaultDownloadsDirectory); } \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) { return _to GetUserDownloadsDirectory(aUserDownloadsDirectory); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOWNLOADMANAGER(_to) \
NS_IMETHOD AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, nsIDownload * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddDownload(aDownloadType, aSource, aTarget, aDisplayName, aMIMEInfo, aStartTime, aTempFile, aCancelable, _retval); } \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownload(aID, _retval); } \
NS_IMETHOD CancelDownload(uint32_t aID) { return !_to ? NS_ERROR_NULL_POINTER : _to->CancelDownload(aID); } \
NS_IMETHOD RemoveDownload(uint32_t aID) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDownload(aID); } \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDownloadsByTimeframe(aBeginTime, aEndTime); } \
NS_IMETHOD PauseDownload(uint32_t aID) { return !_to ? NS_ERROR_NULL_POINTER : _to->PauseDownload(aID); } \
NS_IMETHOD ResumeDownload(uint32_t aID) { return !_to ? NS_ERROR_NULL_POINTER : _to->ResumeDownload(aID); } \
NS_IMETHOD RetryDownload(uint32_t aID) { return !_to ? NS_ERROR_NULL_POINTER : _to->RetryDownload(aID); } \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDBConnection(aDBConnection); } \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanCleanUp(aCanCleanUp); } \
NS_IMETHOD CleanUp(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->CleanUp(); } \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveDownloadCount(aActiveDownloadCount); } \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveDownloads(aActiveDownloads); } \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddListener(aListener); } \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveListener(aListener); } \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultDownloadsDirectory(aDefaultDownloadsDirectory); } \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUserDownloadsDirectory(aUserDownloadsDirectory); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDownloadManager : public nsIDownloadManager
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOWNLOADMANAGER
nsDownloadManager();
private:
~nsDownloadManager();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDownloadManager, nsIDownloadManager)
nsDownloadManager::nsDownloadManager()
{
/* member initializers and constructor code */
}
nsDownloadManager::~nsDownloadManager()
{
/* destructor code */
}
/* nsIDownload addDownload (in short aDownloadType, in nsIURI aSource, in nsIURI aTarget, in AString aDisplayName, in nsIMIMEInfo aMIMEInfo, in PRTime aStartTime, in nsIFile aTempFile, in nsICancelable aCancelable); */
NS_IMETHODIMP nsDownloadManager::AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, nsIDownload * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDownload getDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::GetDownload(uint32_t aID, nsIDownload * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancelDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::CancelDownload(uint32_t aID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::RemoveDownload(uint32_t aID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeDownloadsByTimeframe (in long long aBeginTime, in long long aEndTime); */
NS_IMETHODIMP nsDownloadManager::RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void pauseDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::PauseDownload(uint32_t aID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void resumeDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::ResumeDownload(uint32_t aID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void retryDownload (in unsigned long aID); */
NS_IMETHODIMP nsDownloadManager::RetryDownload(uint32_t aID)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute mozIStorageConnection DBConnection; */
NS_IMETHODIMP nsDownloadManager::GetDBConnection(mozIStorageConnection * *aDBConnection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean canCleanUp; */
NS_IMETHODIMP nsDownloadManager::GetCanCleanUp(bool *aCanCleanUp)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cleanUp (); */
NS_IMETHODIMP nsDownloadManager::CleanUp()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long activeDownloadCount; */
NS_IMETHODIMP nsDownloadManager::GetActiveDownloadCount(int32_t *aActiveDownloadCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsISimpleEnumerator activeDownloads; */
NS_IMETHODIMP nsDownloadManager::GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addListener (in nsIDownloadProgressListener aListener); */
NS_IMETHODIMP nsDownloadManager::AddListener(nsIDownloadProgressListener *aListener)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeListener (in nsIDownloadProgressListener aListener); */
NS_IMETHODIMP nsDownloadManager::RemoveListener(nsIDownloadProgressListener *aListener)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIFile defaultDownloadsDirectory; */
NS_IMETHODIMP nsDownloadManager::GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIFile userDownloadsDirectory; */
NS_IMETHODIMP nsDownloadManager::GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDownloadManager_h__ */