Bug 1525314 - Skip assertion intermittently failing on Android. r=aosmond

Depends on D36796

Differential Revision: https://phabricator.services.mozilla.com/D36797

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Kartikaya Gupta 2019-07-04 18:39:08 +00:00
parent 3d830c4a8c
commit 90b331cafa

View File

@ -678,7 +678,10 @@ void RenderThread::NotifyNotUsed(uint64_t aExternalImageId) {
}
auto it = mRenderTextures.find(aExternalImageId);
#ifndef MOZ_WIDGET_ANDROID
// This assert fails on GeckoView intermittently. Bug 1559958 tracks it.
MOZ_ASSERT(it != mRenderTextures.end());
#endif
if (it == mRenderTextures.end()) {
return;
}