Remove nsISizeOfHandler and associated SizeOf methods. b=106792 r=bzbarsky sr=jst

This commit is contained in:
dbaron@dbaron.org
2003-02-22 15:34:38 +00:00
parent d2034430de
commit 834096485c
250 changed files with 0 additions and 6676 deletions

View File

@@ -1425,19 +1425,6 @@ void nsTableCellFrame::GetCollapseOffset(nsIPresContext* aPresContext,
}
}
#ifdef DEBUG
NS_IMETHODIMP
nsTableCellFrame::SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const
{
if (!aResult) {
return NS_ERROR_NULL_POINTER;
}
PRUint32 sum = sizeof(*this);
*aResult = sum;
return NS_OK;
}
#endif
// nsBCTableCellFrame
nsBCTableCellFrame::nsBCTableCellFrame()
@@ -1561,17 +1548,3 @@ nsBCTableCellFrame::PaintUnderlay(nsIPresContext& aPresContext,
// don't paint the children if it's pass1
aPaintChildren = (aFlags & BORDER_COLLAPSE_BACKGROUNDS);
}
#ifdef DEBUG
NS_IMETHODIMP
nsBCTableCellFrame::SizeOf(nsISizeOfHandler* aHandler,
PRUint32* aResult) const
{
if (!aResult) {
return NS_ERROR_NULL_POINTER;
}
PRUint32 sum = sizeof(*this);
*aResult = sum;
return NS_OK;
}
#endif