bug 273971 patch by Son Le <son.le0@gmail.com> r=biesi sr=neil - make nsIDownload::currBytes and maxBytes use bytes rather than kilobytes - make transfers of unknown size use the right size - send mProgress rather than mContentLength as the current progress in OnStateChange

This commit is contained in:
cbiesinger@web.de 2007-08-13 18:12:15 -07:00
Родитель 51693dd796
Коммит 854dcb4246
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -45,7 +45,7 @@ interface nsICancelable;
interface nsIWebProgressListener; interface nsIWebProgressListener;
interface nsIMIMEInfo; interface nsIMIMEInfo;
[scriptable, uuid(9e1fd9f2-9727-4926-85cd-f16c375bba6d)] [scriptable, uuid(a60c9199-2e21-434f-a43b-ab954ea2f6b7)]
interface nsIDownload : nsITransfer { interface nsIDownload : nsITransfer {
/** /**
@ -60,12 +60,12 @@ interface nsIDownload : nsITransfer {
readonly attribute PRInt32 percentComplete; readonly attribute PRInt32 percentComplete;
/** /**
* The amount of kbytes downloaded so far. * The amount of bytes downloaded so far.
*/ */
readonly attribute PRUint64 amountTransferred; readonly attribute PRUint64 amountTransferred;
/** /**
* The size of file in kbytes. * The size of file in bytes.
* Unknown size is represented by 0. * Unknown size is represented by 0.
*/ */
readonly attribute PRUint64 size; readonly attribute PRUint64 size;