Closed
Bug 553858
Opened 15 years ago
Closed 7 years ago
onDownloadEnded is fired after onInstallEnded
Categories
(Toolkit :: Add-ons Manager, defect, P2)
Toolkit
Add-ons Manager
Tracking
()
RESOLVED
INACTIVE
People
(Reporter: Unfocused, Unassigned)
References
Details
(Whiteboard: [rewrite])
When installing a new addon, the following events are typically triggered:
onNewInstall, onDownloadStarted, onDownloadProgress, onDownloadProgress, onInstallStarted, onInstalling, onInstallEnded, onDownloadEnded
Note that onDownloadEnded is fired last - I would expect it to be fired after the last onDownloadProgress, and before onInstallStarted.
Updated•15 years ago
|
Flags: in-testsuite?
Flags: in-litmus-
Version: unspecified → Trunk
Comment 1•15 years ago
|
||
Is this still happening, the tests aren't seeing that.
Reporter | ||
Comment 2•15 years ago
|
||
Yea, still happening. As far as I can tell:
* downloadComplete() is called at the right time, which calls callInstallListeners() for onDownloadEnded
* As callInstallListeners() is iterating through the listeners, one of them starts the install
* Starting the install immediately triggers onInstallStarted/onInstalling/onInstallEnded
* callInstallListeners() keeps iterating through the rest of the listeners, for onDownloadEnded
* The UI registered as an install listener last, so is always held up by some other listener starting the install before the UI gets its onDownloadEnded event
I suspect (but haven't confirmed) the rogue listener is the WebInstallListener.
Comment 3•15 years ago
|
||
Ah, hmm that makes sense. It probably would be WebInstallListener too.
Updated•15 years ago
|
Priority: -- → P2
Comment 4•7 years ago
|
||
Per policy at https://wiki.mozilla.org/Bug_Triage/Projects/Bug_Handling/Bug_Husbandry#Inactive_Bugs. If this bug is not an enhancement request or a bug not present in a supported release of Firefox, then it may be reopened.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → INACTIVE
You need to log in
before you can comment on or make changes to this bug.
Description
•