Handle failed SendPImageContainerConstructor. (bug 1313770 part 3, r=mattwoodrow)

--HG--
extra : rebase_source : 29089aa04fc2838c649ba92732cecacb62f8505f
This commit is contained in:
David Anderson 2016-10-28 15:48:35 -07:00
Родитель 76322c8fc4
Коммит a5058127f9
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -936,8 +936,10 @@ ImageBridgeChild::CreateImageClientNow(CompositableType aType,
}
if (aImageContainer) {
SendPImageContainerConstructor(aContainerChild);
aContainerChild->RegisterWithIPDL();
if (!SendPImageContainerConstructor(aContainerChild)) {
return nullptr;
}
}
RefPtr<ImageClient> client = ImageClient::CreateImageClient(aType, this, TextureFlags::NO_FLAGS);