зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1732944 - Return early if recieving cache on a shutdown document. r=morgan
Differential Revision: https://phabricator.services.mozilla.com/D126839
This commit is contained in:
Родитель
1de5b0abcd
Коммит
de9be32795
|
@ -476,6 +476,10 @@ mozilla::ipc::IPCResult DocAccessibleParent::RecvScrollingEvent(
|
|||
mozilla::ipc::IPCResult DocAccessibleParent::RecvCache(
|
||||
const mozilla::a11y::CacheUpdateType& aUpdateType,
|
||||
nsTArray<CacheData>&& aData, const bool& aFinal) {
|
||||
if (mShutdown) {
|
||||
return IPC_OK();
|
||||
}
|
||||
|
||||
for (auto& entry : aData) {
|
||||
RemoteAccessible* remote = GetAccessible(entry.ID());
|
||||
if (!remote) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче