Bug 1281223 - Debug instrumentation for catching accidental destruction of the ContentChild instance. r=billm

MozReview-Commit-ID: 5LozIBYXLeO

--HG--
extra : rebase_source : 1ddb8af09653225a164acb3b8e7dc4700d74a915
This commit is contained in:
Cervantes Yu 2016-07-29 15:13:10 +08:00
Родитель 26d9758f22
Коммит 77dc3c4848
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -579,6 +579,9 @@ ContentChild::ContentChild()
ContentChild::~ContentChild()
{
#ifndef NS_FREE_PERMANENT_DATA
NS_RUNTIMEABORT("Content Child shouldn't be destroyed.");
#endif
}
NS_INTERFACE_MAP_BEGIN(ContentChild)