Followup for bug 510651 to make non-debug builds with --enable-extensions=layout-debug build.

This commit is contained in:
Boris Zbarsky 2009-08-24 14:22:19 -04:00
parent 728dbbbd07
commit 38bd4e6447

View File

@ -428,6 +428,7 @@ nsLayoutDebuggingTools::DumpContent()
static void
DumpFramesRecur(nsIDocShell* aDocShell, FILE* out)
{
#ifdef DEBUG
fprintf(out, "webshell=%p \n", static_cast<void*>(aDocShell));
nsCOMPtr<nsIPresShell> shell(pres_shell(aDocShell));
if (shell) {
@ -452,6 +453,7 @@ DumpFramesRecur(nsIDocShell* aDocShell, FILE* out)
DumpFramesRecur(childAsShell, out);
}
}
#endif
}
NS_IMETHODIMP