Backout aba6c73511a2 (bug 1307961) for massive test bustage resulting in a CLOSED TREE; r=alltheorange

This commit is contained in:
Nathan Froyd
2016-12-12 08:45:46 -05:00
parent 2f93d6e48d
commit f2d50c26f4
87 changed files with 308 additions and 56 deletions

View File

@@ -8,16 +8,21 @@ nsHtml5OwningUTF16Buffer::nsHtml5OwningUTF16Buffer(char16_t* aBuffer)
: nsHtml5UTF16Buffer(aBuffer, 0),
next(nullptr),
key(nullptr)
{}
{
MOZ_COUNT_CTOR(nsHtml5OwningUTF16Buffer);
}
nsHtml5OwningUTF16Buffer::nsHtml5OwningUTF16Buffer(void* aKey)
: nsHtml5UTF16Buffer(nullptr, 0),
next(nullptr),
key(aKey)
{}
{
MOZ_COUNT_CTOR(nsHtml5OwningUTF16Buffer);
}
nsHtml5OwningUTF16Buffer::~nsHtml5OwningUTF16Buffer()
{
MOZ_COUNT_DTOR(nsHtml5OwningUTF16Buffer);
DeleteBuffer();
// This is to avoid dtor recursion on 'next', bug 706932.