Implementation for the new method onLocationChange added to the nsIWebProgressListener interface.

git-svn-id: svn://10.0.0.236/trunk@64084 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net
2000-03-25 01:00:05 +00:00
parent fd0967d82d
commit e60a5e69a0

View File

@@ -430,6 +430,14 @@ NS_IMETHODIMP nsDocShellTreeOwner::OnChildStatusChange(nsIChannel* aChannel,
aProgressStatusFlags);
}
NS_IMETHODIMP nsDocShellTreeOwner::OnLocationChange(nsIURI* aURI)
{
if(!mOwnerProgressListener)
return NS_OK;
return mOwnerProgressListener->OnLocationChange(aURI);
}
//*****************************************************************************
// nsDocShellTreeOwner: Helpers
//*****************************************************************************