diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/base/ImageTracker.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/ImageTracker.h')
-rw-r--r-- | dom/base/ImageTracker.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/dom/base/ImageTracker.h b/dom/base/ImageTracker.h new file mode 100644 index 000000000..d33dc55f8 --- /dev/null +++ b/dom/base/ImageTracker.h @@ -0,0 +1,69 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* table of images used in a document, for batch locking/unlocking and + * animating */ + +#ifndef mozilla_dom_ImageTracker +#define mozilla_dom_ImageTracker + +#include "nsDataHashtable.h" +#include "nsHashKeys.h" + +class imgIRequest; + +namespace mozilla { +namespace dom { + +/* + * Image Tracking + * + * Style and content images register their imgIRequests with their document's + * image tracker, so that we can efficiently tell all descendant images when + * they are and are not visible. When an image is on-screen, we want to call + * LockImage() on it so that it doesn't do things like discarding frame data + * to save memory. The PresShell informs its document's image tracker whether + * its images should be locked or not via SetLockingState(). + * + * See bug 512260. + */ +class ImageTracker +{ +public: + ImageTracker(); + ImageTracker(const ImageTracker&) = delete; + ImageTracker& operator=(const ImageTracker&) = delete; + + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ImageTracker) + + nsresult Add(imgIRequest* aImage); + + enum { REQUEST_DISCARD = 0x1 }; + nsresult Remove(imgIRequest* aImage, uint32_t aFlags = 0); + + // Makes the images on this document locked/unlocked. By default, the locking + // state is unlocked/false. + nsresult SetLockingState(bool aLocked); + + // Makes the images on this document capable of having their animation + // active or suspended. An Image will animate as long as at least one of its + // owning Documents needs it to animate; otherwise it can suspend. + void SetAnimatingState(bool aAnimating); + + void RequestDiscardAll(); + +private: + ~ImageTracker(); + + nsDataHashtable<nsPtrHashKey<imgIRequest>, uint32_t> mImages; + bool mLocking; + bool mAnimating; +}; + +} // namespace dom +} // namespace mozilla + +#endif // mozilla_dom_ImageTracker |