Bug 1125351 - Make nsIDocShell.isPrerendered infallible; r=bzbarsky

This commit is contained in:
Ehsan Akhgari
2015-01-23 16:22:55 -05:00
parent a0bf98edd8
commit 5ec96dbe39
2 changed files with 3 additions and 5 deletions

View File

@@ -3383,10 +3383,8 @@ nsDocShell::SetDocLoaderParent(nsDocLoader * aParent)
{
SetIsActive(value);
}
if (NS_SUCCEEDED(parentAsDocShell->GetIsPrerendered(&value))) {
if (value) {
SetIsPrerendered(true);
}
if (parentAsDocShell->GetIsPrerendered()) {
SetIsPrerendered(true);
}
if (NS_FAILED(parentAsDocShell->GetAllowDNSPrefetch(&value))) {
value = false;