This commit is contained in:
rpotts%netscape.com 2005-08-18 11:16:29 +00:00
Родитель 4a5063aed7
Коммит a2798e03d7
1 изменённых файлов: 14 добавлений и 1 удалений

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

@ -587,6 +587,15 @@ nsSHistory::GetCurrentURI(nsIURI** aResultURI)
}
NS_IMETHODIMP
nsSHistory::GetReferingURI(nsIURI** aURI)
{
*aURI = nsnull;
// Not implemented
return NS_OK;
}
NS_IMETHODIMP
nsSHistory::SetSessionHistory(nsISHistory* aSessionHistory)
{
@ -604,7 +613,11 @@ nsSHistory::GetSessionHistory(nsISHistory** aSessionHistory)
NS_IMETHODIMP
nsSHistory::LoadURI(const PRUnichar* aURI, PRUint32 aLoadFlags)
nsSHistory::LoadURI(const PRUnichar* aURI,
PRUint32 aLoadFlags,
nsIURI* aReferingURI,
nsIInputStream* aPostStream,
nsIInputStream* aExtraHeaderStream)
{
return NS_OK;
}