diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-29 09:32:40 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-29 09:32:40 +0200 |
commit | ac3159f02f3b60a8f20a22ff6a66c51d075e11a7 (patch) | |
tree | 139786ada8d536d6c29c18a5e6866eddb6390500 /application/palemoon/components/downloads/DownloadsCommon.jsm | |
parent | e666c9a8e06c7de97fe0462a9219b19835980384 (diff) | |
download | UXP-ac3159f02f3b60a8f20a22ff6a66c51d075e11a7.tar UXP-ac3159f02f3b60a8f20a22ff6a66c51d075e11a7.tar.gz UXP-ac3159f02f3b60a8f20a22ff6a66c51d075e11a7.tar.lz UXP-ac3159f02f3b60a8f20a22ff6a66c51d075e11a7.tar.xz UXP-ac3159f02f3b60a8f20a22ff6a66c51d075e11a7.zip |
[PALEMOON] Bug 1116176 - Create DownloadsHistoryDataItem and HistoryDownload objects
Diffstat (limited to 'application/palemoon/components/downloads/DownloadsCommon.jsm')
-rw-r--r-- | application/palemoon/components/downloads/DownloadsCommon.jsm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/application/palemoon/components/downloads/DownloadsCommon.jsm b/application/palemoon/components/downloads/DownloadsCommon.jsm index 42864840b..2bfd7b528 100644 --- a/application/palemoon/components/downloads/DownloadsCommon.jsm +++ b/application/palemoon/components/downloads/DownloadsCommon.jsm @@ -8,6 +8,7 @@ this.EXPORTED_SYMBOLS = [ "DownloadsCommon", + "DownloadsDataItem", ]; /** @@ -25,10 +26,9 @@ this.EXPORTED_SYMBOLS = [ * to build a consistent view of the available data. * * DownloadsDataItem - * Represents a single item in the list of downloads. This object either wraps - * an existing nsIDownload from the Download Manager, or provides the same - * information read directly from the downloads database, with the possibility - * of querying the nsIDownload lazily, for performance reasons. + * Represents a single item in the list of downloads. This object wraps the + * Download object from the JavaScript API for downloads. A specialized version + * of this object is implemented in the Places front-end view. * * DownloadsIndicatorData * This object registers itself with DownloadsData as a view, and transforms the |