diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-12 18:56:16 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-12 18:56:16 +0200 |
commit | 53cf12d6d808c80c4ce240cbbf8d29344c8ce644 (patch) | |
tree | 4d187651b4548fa1a97065a732a20eec0fe5e473 /dom/base/nsImageLoadingContent.h | |
parent | 70dd5e7c66b1fe3f82e5b4db2406050baba15f05 (diff) | |
download | UXP-53cf12d6d808c80c4ce240cbbf8d29344c8ce644.tar UXP-53cf12d6d808c80c4ce240cbbf8d29344c8ce644.tar.gz UXP-53cf12d6d808c80c4ce240cbbf8d29344c8ce644.tar.lz UXP-53cf12d6d808c80c4ce240cbbf8d29344c8ce644.tar.xz UXP-53cf12d6d808c80c4ce240cbbf8d29344c8ce644.zip |
Bug 1346501. Don't mark every image as visible when a frame is created for it
Diffstat (limited to 'dom/base/nsImageLoadingContent.h')
-rw-r--r-- | dom/base/nsImageLoadingContent.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dom/base/nsImageLoadingContent.h b/dom/base/nsImageLoadingContent.h index 85db2bd2c..0764d425c 100644 --- a/dom/base/nsImageLoadingContent.h +++ b/dom/base/nsImageLoadingContent.h @@ -364,6 +364,11 @@ protected: * * No-op if aImage is null. * + * @param aFrame If called from FrameCreated the frame passed to FrameCreated. + * This is our frame, but at the time of the FrameCreated call + * our primary frame pointer hasn't been set yet, so this is + * only way to get our frame. + * * @param aNonvisibleAction A requested action if the frame has become * nonvisible. If Nothing(), no action is * requested. If DISCARD_IMAGES is specified, the @@ -371,7 +376,7 @@ protected: * associated with to discard their surfaces if * possible. */ - void TrackImage(imgIRequest* aImage); + void TrackImage(imgIRequest* aImage, nsIFrame* aFrame = nullptr); void UntrackImage(imgIRequest* aImage, const Maybe<OnNonvisible>& aNonvisibleAction = Nothing()); |