Bug 799196: Update signature for nsHTMLFramesetBlankFrame::List(). r=bz

This commit is contained in:
Daniel Holbert 2012-10-08 12:58:54 -07:00
Родитель 8a62144ace
Коммит 3f348ab8ad
1 изменённых файлов: 8 добавлений и 4 удалений

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

@ -140,7 +140,9 @@ public:
NS_DECL_FRAMEARENA_HELPERS
#ifdef DEBUG
NS_IMETHOD List(FILE* out = stdout, int32_t aIndent = 0) const;
NS_IMETHOD List(FILE* out,
int32_t aIndent,
uint32_t aFlags = 0) const MOZ_OVERRIDE;
#endif
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
@ -1819,12 +1821,14 @@ void nsDisplayFramesetBlank::Paint(nsDisplayListBuilder* aBuilder,
}
#ifdef DEBUG
NS_IMETHODIMP nsHTMLFramesetBlankFrame::List(FILE* out,
int32_t aIndent) const
NS_IMETHODIMP
nsHTMLFramesetBlankFrame::List(FILE* out,
int32_t aIndent,
uint32_t aFlags) const
{
for (int32_t i = aIndent; --i >= 0; ) fputs(" ", out); // Indent
fprintf(out, "%p BLANK \n", (void*)this);
return nsLeafFrame::List(out, aIndent);
return nsLeafFrame::List(out, aIndent, aFlags);
}
#endif