Added attribute for setting and getting the nsIDocShellTreeOwner.

This commit is contained in:
tbogard@aol.net
1999-12-02 04:34:09 +00:00
parent f9ee30d471
commit dbf1584df5
4 changed files with 66 additions and 1 deletions

View File

@@ -366,6 +366,23 @@ NS_IMETHODIMP nsDocShell::SetParent(nsIDocShell* aParent)
return NS_OK;
}
NS_IMETHODIMP nsDocShell::GetTreeOwner(nsIDocShellTreeOwner** aTreeOwner)
{
NS_ENSURE_ARG_POINTER(aTreeOwner);
//XXXIMPL Implement this!
NS_WARN_IF_FALSE(PR_FALSE, "Not Implemented");
return NS_OK;
}
NS_IMETHODIMP nsDocShell::SetTreeOwner(nsIDocShellTreeOwner* aTreeOwner)
{
//XXXIMPL Implement this!
NS_WARN_IF_FALSE(PR_FALSE, "Not Implemented");
return NS_OK;
}
NS_IMETHODIMP nsDocShell::GetParentURIContentListener(nsIURIContentListener**
aParent)
{