Bug 545407 Remove code that disables DNS pre-fetching for APP_TYPE_MAIL/EDITOR docshells (in favour of letting it be managed by app specific policies). r=bzbarsky

This commit is contained in:
Mark Banner 2010-03-10 10:30:23 +00:00
Родитель 1294e19e77
Коммит e96e154428
1 изменённых файлов: 0 добавлений и 3 удалений

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

@ -1962,9 +1962,6 @@ NS_IMETHODIMP
nsDocShell::SetAppType(PRUint32 aAppType) nsDocShell::SetAppType(PRUint32 aAppType)
{ {
mAppType = aAppType; mAppType = aAppType;
if (mAppType == APP_TYPE_MAIL || mAppType == APP_TYPE_EDITOR) {
SetAllowDNSPrefetch(PR_FALSE);
}
return NS_OK; return NS_OK;
} }