Changes to support different methods on the webshellcontainer interface.

git-svn-id: svn://10.0.0.236/trunk@30283 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com
1999-05-04 23:33:30 +00:00
parent 3c8e3170b8
commit 6915601190
2 changed files with 2 additions and 46 deletions

View File

@@ -260,47 +260,7 @@ CWebShellContainer::FocusAvailable(nsIWebShell* aFocusedWebShell, PRBool& aFocus
NS_IMETHODIMP
CWebShellContainer::CanCreateNewWebShell(PRBool& aResult)
{
aResult = PR_FALSE;
nsresult rv = NS_OK;
return rv;
}
NS_IMETHODIMP
CWebShellContainer::SetNewWebShellInfo(const nsString& aName, const nsString& anURL,
nsIWebShell* aOpenerShell, PRUint32 aChromeMask,
nsIWebShell** aNewShell, nsIWebShell** anInnerShell)
{
nsresult rv = NS_ERROR_FAILURE;
CIPtr(IDispatch) cpDispNew;
VARIANT_BOOL bCancel = VARIANT_FALSE;
m_pEvents2->Fire_NewWindow2(&cpDispNew, &bCancel);
if (bCancel == VARIANT_FALSE && cpDispNew)
{
CIPtr(IWebBrowser2) cpOther = cpDispNew;
if (cpDispNew)
{
BSTR bstrURL = SysAllocString(anURL);
CComVariant vURL(bstrURL);
VARIANT vNull;
vNull.vt = VT_NULL;
cpOther->Navigate2(&vURL, &vNull, &vNull, &vNull, &vNull);
SysFreeString(bstrURL);
}
rv = NS_OK;
}
return rv;
}
NS_IMETHODIMP
CWebShellContainer::ChildShellAdded(nsIWebShell** aChildShell, nsIContent* frameNode)
CWebShellContainer::ContentShellAdded(nsIWebShell* aWebShell, nsIContent* frameNode)
{
nsresult rv = NS_OK;
return rv;