/usr/include/thunderbird/nsIDownloadManager.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/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: nsIDownloadManagerResult */
#define NS_IDOWNLOADMANAGERRESULT_IID_STR "0c07ffeb-791b-49f3-ae38-2c331fd55a52"
#define NS_IDOWNLOADMANAGERRESULT_IID \
{0x0c07ffeb, 0x791b, 0x49f3, \
{ 0xae, 0x38, 0x2c, 0x33, 0x1f, 0xd5, 0x5a, 0x52 }}
class NS_NO_VTABLE nsIDownloadManagerResult : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOWNLOADMANAGERRESULT_IID)
/* void handleResult (in nsresult aStatus, in nsIDownload aDownload); */
NS_IMETHOD HandleResult(nsresult aStatus, nsIDownload *aDownload) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDownloadManagerResult, NS_IDOWNLOADMANAGERRESULT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOWNLOADMANAGERRESULT \
NS_IMETHOD HandleResult(nsresult aStatus, nsIDownload *aDownload) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOWNLOADMANAGERRESULT(_to) \
NS_IMETHOD HandleResult(nsresult aStatus, nsIDownload *aDownload) override { return _to HandleResult(aStatus, aDownload); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOWNLOADMANAGERRESULT(_to) \
NS_IMETHOD HandleResult(nsresult aStatus, nsIDownload *aDownload) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HandleResult(aStatus, aDownload); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDownloadManagerResult : public nsIDownloadManagerResult
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOWNLOADMANAGERRESULT
nsDownloadManagerResult();
private:
~nsDownloadManagerResult();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDownloadManagerResult, nsIDownloadManagerResult)
nsDownloadManagerResult::nsDownloadManagerResult()
{
/* member initializers and constructor code */
}
nsDownloadManagerResult::~nsDownloadManagerResult()
{
/* destructor code */
}
/* void handleResult (in nsresult aStatus, in nsIDownload aDownload); */
NS_IMETHODIMP nsDownloadManagerResult::HandleResult(nsresult aStatus, nsIDownload *aDownload)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDownloadManager */
#define NS_IDOWNLOADMANAGER_IID_STR "b29aac15-7ec4-4ab3-a53b-08f78aed3b34"
#define NS_IDOWNLOADMANAGER_IID \
{0xb29aac15, 0x7ec4, 0x4ab3, \
{ 0xa5, 0x3b, 0x08, 0xf7, 0x8a, 0xed, 0x3b, 0x34 }}
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, in boolean aIsPrivate); */
NS_IMETHOD AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, bool aIsPrivate, nsIDownload * *_retval) = 0;
/* nsIDownload getDownload (in unsigned long aID); */
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) = 0;
/* void getDownloadByGUID (in ACString aGUID, in nsIDownloadManagerResult aCallback); */
NS_IMETHOD GetDownloadByGUID(const nsACString & aGUID, nsIDownloadManagerResult *aCallback) = 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 mozIStorageConnection privateDBConnection; */
NS_IMETHOD GetPrivateDBConnection(mozIStorageConnection * *aPrivateDBConnection) = 0;
/* readonly attribute boolean canCleanUp; */
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) = 0;
/* readonly attribute boolean canCleanUpPrivate; */
NS_IMETHOD GetCanCleanUpPrivate(bool *aCanCleanUpPrivate) = 0;
/* void cleanUp (); */
NS_IMETHOD CleanUp(void) = 0;
/* void cleanUpPrivate (); */
NS_IMETHOD CleanUpPrivate(void) = 0;
/* readonly attribute long activeDownloadCount; */
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) = 0;
/* readonly attribute long activePrivateDownloadCount; */
NS_IMETHOD GetActivePrivateDownloadCount(int32_t *aActivePrivateDownloadCount) = 0;
/* readonly attribute nsISimpleEnumerator activeDownloads; */
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) = 0;
/* readonly attribute nsISimpleEnumerator activePrivateDownloads; */
NS_IMETHOD GetActivePrivateDownloads(nsISimpleEnumerator * *aActivePrivateDownloads) = 0;
/* void addListener (in nsIDownloadProgressListener aListener); */
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) = 0;
/* void addPrivacyAwareListener (in nsIDownloadProgressListener aListener); */
NS_IMETHOD AddPrivacyAwareListener(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, bool aIsPrivate, nsIDownload * *_retval) override; \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) override; \
NS_IMETHOD GetDownloadByGUID(const nsACString & aGUID, nsIDownloadManagerResult *aCallback) override; \
NS_IMETHOD CancelDownload(uint32_t aID) override; \
NS_IMETHOD RemoveDownload(uint32_t aID) override; \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) override; \
NS_IMETHOD PauseDownload(uint32_t aID) override; \
NS_IMETHOD ResumeDownload(uint32_t aID) override; \
NS_IMETHOD RetryDownload(uint32_t aID) override; \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) override; \
NS_IMETHOD GetPrivateDBConnection(mozIStorageConnection * *aPrivateDBConnection) override; \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) override; \
NS_IMETHOD GetCanCleanUpPrivate(bool *aCanCleanUpPrivate) override; \
NS_IMETHOD CleanUp(void) override; \
NS_IMETHOD CleanUpPrivate(void) override; \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) override; \
NS_IMETHOD GetActivePrivateDownloadCount(int32_t *aActivePrivateDownloadCount) override; \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) override; \
NS_IMETHOD GetActivePrivateDownloads(nsISimpleEnumerator * *aActivePrivateDownloads) override; \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) override; \
NS_IMETHOD AddPrivacyAwareListener(nsIDownloadProgressListener *aListener) override; \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) override; \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) override; \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) override;
/* 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, bool aIsPrivate, nsIDownload * *_retval) override { return _to AddDownload(aDownloadType, aSource, aTarget, aDisplayName, aMIMEInfo, aStartTime, aTempFile, aCancelable, aIsPrivate, _retval); } \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) override { return _to GetDownload(aID, _retval); } \
NS_IMETHOD GetDownloadByGUID(const nsACString & aGUID, nsIDownloadManagerResult *aCallback) override { return _to GetDownloadByGUID(aGUID, aCallback); } \
NS_IMETHOD CancelDownload(uint32_t aID) override { return _to CancelDownload(aID); } \
NS_IMETHOD RemoveDownload(uint32_t aID) override { return _to RemoveDownload(aID); } \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) override { return _to RemoveDownloadsByTimeframe(aBeginTime, aEndTime); } \
NS_IMETHOD PauseDownload(uint32_t aID) override { return _to PauseDownload(aID); } \
NS_IMETHOD ResumeDownload(uint32_t aID) override { return _to ResumeDownload(aID); } \
NS_IMETHOD RetryDownload(uint32_t aID) override { return _to RetryDownload(aID); } \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) override { return _to GetDBConnection(aDBConnection); } \
NS_IMETHOD GetPrivateDBConnection(mozIStorageConnection * *aPrivateDBConnection) override { return _to GetPrivateDBConnection(aPrivateDBConnection); } \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) override { return _to GetCanCleanUp(aCanCleanUp); } \
NS_IMETHOD GetCanCleanUpPrivate(bool *aCanCleanUpPrivate) override { return _to GetCanCleanUpPrivate(aCanCleanUpPrivate); } \
NS_IMETHOD CleanUp(void) override { return _to CleanUp(); } \
NS_IMETHOD CleanUpPrivate(void) override { return _to CleanUpPrivate(); } \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) override { return _to GetActiveDownloadCount(aActiveDownloadCount); } \
NS_IMETHOD GetActivePrivateDownloadCount(int32_t *aActivePrivateDownloadCount) override { return _to GetActivePrivateDownloadCount(aActivePrivateDownloadCount); } \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) override { return _to GetActiveDownloads(aActiveDownloads); } \
NS_IMETHOD GetActivePrivateDownloads(nsISimpleEnumerator * *aActivePrivateDownloads) override { return _to GetActivePrivateDownloads(aActivePrivateDownloads); } \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) override { return _to AddListener(aListener); } \
NS_IMETHOD AddPrivacyAwareListener(nsIDownloadProgressListener *aListener) override { return _to AddPrivacyAwareListener(aListener); } \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) override { return _to RemoveListener(aListener); } \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) override { return _to GetDefaultDownloadsDirectory(aDefaultDownloadsDirectory); } \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) override { 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, bool aIsPrivate, nsIDownload * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddDownload(aDownloadType, aSource, aTarget, aDisplayName, aMIMEInfo, aStartTime, aTempFile, aCancelable, aIsPrivate, _retval); } \
NS_IMETHOD GetDownload(uint32_t aID, nsIDownload * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownload(aID, _retval); } \
NS_IMETHOD GetDownloadByGUID(const nsACString & aGUID, nsIDownloadManagerResult *aCallback) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDownloadByGUID(aGUID, aCallback); } \
NS_IMETHOD CancelDownload(uint32_t aID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CancelDownload(aID); } \
NS_IMETHOD RemoveDownload(uint32_t aID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDownload(aID); } \
NS_IMETHOD RemoveDownloadsByTimeframe(int64_t aBeginTime, int64_t aEndTime) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveDownloadsByTimeframe(aBeginTime, aEndTime); } \
NS_IMETHOD PauseDownload(uint32_t aID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->PauseDownload(aID); } \
NS_IMETHOD ResumeDownload(uint32_t aID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ResumeDownload(aID); } \
NS_IMETHOD RetryDownload(uint32_t aID) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RetryDownload(aID); } \
NS_IMETHOD GetDBConnection(mozIStorageConnection * *aDBConnection) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDBConnection(aDBConnection); } \
NS_IMETHOD GetPrivateDBConnection(mozIStorageConnection * *aPrivateDBConnection) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrivateDBConnection(aPrivateDBConnection); } \
NS_IMETHOD GetCanCleanUp(bool *aCanCleanUp) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanCleanUp(aCanCleanUp); } \
NS_IMETHOD GetCanCleanUpPrivate(bool *aCanCleanUpPrivate) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanCleanUpPrivate(aCanCleanUpPrivate); } \
NS_IMETHOD CleanUp(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CleanUp(); } \
NS_IMETHOD CleanUpPrivate(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->CleanUpPrivate(); } \
NS_IMETHOD GetActiveDownloadCount(int32_t *aActiveDownloadCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveDownloadCount(aActiveDownloadCount); } \
NS_IMETHOD GetActivePrivateDownloadCount(int32_t *aActivePrivateDownloadCount) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActivePrivateDownloadCount(aActivePrivateDownloadCount); } \
NS_IMETHOD GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveDownloads(aActiveDownloads); } \
NS_IMETHOD GetActivePrivateDownloads(nsISimpleEnumerator * *aActivePrivateDownloads) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActivePrivateDownloads(aActivePrivateDownloads); } \
NS_IMETHOD AddListener(nsIDownloadProgressListener *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddListener(aListener); } \
NS_IMETHOD AddPrivacyAwareListener(nsIDownloadProgressListener *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddPrivacyAwareListener(aListener); } \
NS_IMETHOD RemoveListener(nsIDownloadProgressListener *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveListener(aListener); } \
NS_IMETHOD GetDefaultDownloadsDirectory(nsIFile * *aDefaultDownloadsDirectory) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDefaultDownloadsDirectory(aDefaultDownloadsDirectory); } \
NS_IMETHOD GetUserDownloadsDirectory(nsIFile * *aUserDownloadsDirectory) override { 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_ISUPPORTS(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, in boolean aIsPrivate); */
NS_IMETHODIMP nsDownloadManager::AddDownload(int16_t aDownloadType, nsIURI *aSource, nsIURI *aTarget, const nsAString & aDisplayName, nsIMIMEInfo *aMIMEInfo, PRTime aStartTime, nsIFile *aTempFile, nsICancelable *aCancelable, bool aIsPrivate, 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 getDownloadByGUID (in ACString aGUID, in nsIDownloadManagerResult aCallback); */
NS_IMETHODIMP nsDownloadManager::GetDownloadByGUID(const nsACString & aGUID, nsIDownloadManagerResult *aCallback)
{
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 mozIStorageConnection privateDBConnection; */
NS_IMETHODIMP nsDownloadManager::GetPrivateDBConnection(mozIStorageConnection * *aPrivateDBConnection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean canCleanUp; */
NS_IMETHODIMP nsDownloadManager::GetCanCleanUp(bool *aCanCleanUp)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean canCleanUpPrivate; */
NS_IMETHODIMP nsDownloadManager::GetCanCleanUpPrivate(bool *aCanCleanUpPrivate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cleanUp (); */
NS_IMETHODIMP nsDownloadManager::CleanUp()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cleanUpPrivate (); */
NS_IMETHODIMP nsDownloadManager::CleanUpPrivate()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long activeDownloadCount; */
NS_IMETHODIMP nsDownloadManager::GetActiveDownloadCount(int32_t *aActiveDownloadCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long activePrivateDownloadCount; */
NS_IMETHODIMP nsDownloadManager::GetActivePrivateDownloadCount(int32_t *aActivePrivateDownloadCount)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsISimpleEnumerator activeDownloads; */
NS_IMETHODIMP nsDownloadManager::GetActiveDownloads(nsISimpleEnumerator * *aActiveDownloads)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsISimpleEnumerator activePrivateDownloads; */
NS_IMETHODIMP nsDownloadManager::GetActivePrivateDownloads(nsISimpleEnumerator * *aActivePrivateDownloads)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addListener (in nsIDownloadProgressListener aListener); */
NS_IMETHODIMP nsDownloadManager::AddListener(nsIDownloadProgressListener *aListener)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addPrivacyAwareListener (in nsIDownloadProgressListener aListener); */
NS_IMETHODIMP nsDownloadManager::AddPrivacyAwareListener(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__ */
|