Support SizeOf methods

git-svn-id: svn://10.0.0.236/trunk@49891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com
1999-10-05 23:47:46 +00:00
parent efca1f8c77
commit 53b538cfc8
31 changed files with 535 additions and 48 deletions

View File

@@ -175,6 +175,9 @@ public:
NS_IMETHOD GetRangeList(nsVoidArray*& aResult) const {
return mInner.GetRangeList(aResult);
}
NS_IMETHOD SizeOf(nsISizeOfHandler* aSizer, PRUint32* aResult) const {
return mInner.SizeOf(aSizer, aResult, sizeof(*this));
}
// nsIHTMLContent
NS_IMPL_IHTMLCONTENT_USING_GENERIC(mInner)