bug #94205. Adding flags to nsIWebNavigation::Stop().

This commit is contained in:
rpotts@netscape.com
2001-08-14 04:46:20 +00:00
parent c59b959b20
commit 4bb8a856ea
26 changed files with 203 additions and 198 deletions
-15
View File
@@ -34,7 +34,6 @@ nsDocShellLoadInfo::nsDocShellLoadInfo()
mLoadType = nsIDocShellLoadInfo::loadNormal;
mInheritOwner = PR_FALSE;
mTarget.Assign("");
mStopActiveDocument = PR_FALSE;
}
nsDocShellLoadInfo::~nsDocShellLoadInfo()
@@ -101,20 +100,6 @@ NS_IMETHODIMP nsDocShellLoadInfo::SetInheritOwner(PRBool aInheritOwner)
return NS_OK;
}
NS_IMETHODIMP nsDocShellLoadInfo::GetStopActiveDocument(PRBool* aStopDocument)
{
NS_ENSURE_ARG_POINTER(aStopDocument);
*aStopDocument = mStopActiveDocument;
return NS_OK;
}
NS_IMETHODIMP nsDocShellLoadInfo::SetStopActiveDocument(PRBool aStopDocument)
{
mStopActiveDocument = aStopDocument;
return NS_OK;
}
NS_IMETHODIMP nsDocShellLoadInfo::GetLoadType(nsDocShellInfoLoadType * aLoadType)
{
NS_ENSURE_ARG_POINTER(aLoadType);