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
Родитель c51488146f
Коммит 1f0eeed375
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -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