icecat: update to upstream version 128.0.14-1gnu1
This commit is contained in:
parent
0cdda4f34e
commit
56c3deff60
77 changed files with 8997 additions and 3862 deletions
|
|
@ -57,6 +57,19 @@ class OffscreenCanvasDisplayHelper final {
|
|||
void DestroyCanvas();
|
||||
void DestroyElement();
|
||||
|
||||
bool IsWriteOnly() const {
|
||||
MutexAutoLock lock(mMutex);
|
||||
return mIsWriteOnly;
|
||||
}
|
||||
|
||||
bool HasWorkerRef() const {
|
||||
MutexAutoLock lock(mMutex);
|
||||
return !!mWorkerRef;
|
||||
}
|
||||
|
||||
void SetWriteOnly(nsIPrincipal* aExpandedReader = nullptr);
|
||||
bool CallerCanRead(nsIPrincipal& aPrincipal) const;
|
||||
|
||||
bool CanElementCaptureStream() const;
|
||||
bool UsingElementCaptureStream() const;
|
||||
|
||||
|
|
@ -90,6 +103,8 @@ class OffscreenCanvasDisplayHelper final {
|
|||
mozilla::layers::ImageContainer::FrameID mLastFrameID MOZ_GUARDED_BY(mMutex) =
|
||||
0;
|
||||
bool mPendingInvalidate MOZ_GUARDED_BY(mMutex) = false;
|
||||
bool mIsWriteOnly MOZ_GUARDED_BY(mMutex) = false;
|
||||
RefPtr<nsIPrincipal> mExpandedReader MOZ_GUARDED_BY(mMutex);
|
||||
};
|
||||
|
||||
} // namespace mozilla::dom
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue