Bug 1118424 - Mark virtual overridden functions as MOZ_OVERRIDE in dom/html; r=baku

This commit is contained in:
Ehsan Akhgari
2015-01-06 15:13:36 -05:00
parent 944a6c1192
commit 79203f0268
28 changed files with 104 additions and 111 deletions

View File

@@ -349,16 +349,10 @@ DistributedContentList::Item(uint32_t aIndex, nsIDOMNode** aReturn)
return CallQueryInterface(item, aReturn);
}
uint32_t
DistributedContentList::Length() const
{
return mDistributedNodes.Length();
}
NS_IMETHODIMP
DistributedContentList::GetLength(uint32_t* aLength)
{
*aLength = Length();
*aLength = mDistributedNodes.Length();
return NS_OK;
}