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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user