Added stub implementation for new methods nsIWebBrowserChrome::SetJSStatus, nsIDocShellTreeOwner::SizeShellTo, and nsIDocShellTreeOwner::ShowModal.

git-svn-id: svn://10.0.0.236/trunk@59836 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net 2000-02-05 03:24:45 +00:00
parent 9ffbf24b15
commit 3c76c263eb
2 changed files with 22 additions and 0 deletions

View File

@ -80,6 +80,12 @@ NS_IMETHODIMP nsWebBrowserChrome::SetJSStatus(const PRUnichar* aStatus)
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsWebBrowserChrome::SetJSDefaultStatus(const PRUnichar* aStatus)
{
NS_ERROR("Haven't Implemented this yet");
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsWebBrowserChrome::SetOverLink(const PRUnichar* aLink)
{
NS_ERROR("Haven't Implemented this yet");
@ -148,6 +154,19 @@ NS_IMETHODIMP nsWebBrowserChrome::GetPrimaryContentShell(nsIDocShellTreeItem** a
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsWebBrowserChrome::SizeShellTo(nsIDocShellTreeItem* aShell,
PRInt32 aCX, PRInt32 aCY)
{
NS_ERROR("Haven't Implemented this yet");
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsWebBrowserChrome::ShowModal()
{
NS_ERROR("Haven't Implemented this yet");
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP nsWebBrowserChrome::GetNewBrowserChrome(PRInt32 aChromeFlags,
nsIWebBrowserChrome** aWebBrowserChrome)
{

View File

@ -52,6 +52,9 @@ public:
NS_IMETHOD ContentShellAdded(nsIDocShellTreeItem* aContentShell,
PRBool aPrimary, const PRUnichar* aID);
NS_IMETHOD GetPrimaryContentShell(nsIDocShellTreeItem** aShell);
NS_IMETHOD SizeShellTo(nsIDocShellTreeItem* aShell, PRInt32 aCX, PRInt32 aCY);
NS_IMETHOD ShowModal();
NS_IMETHOD GetNewBrowserChrome(PRInt32 aChromeFlags,
nsIWebBrowserChrome** aWebBrowserChrome);