Adding targetting of any named window

git-svn-id: svn://10.0.0.236/trunk@10327 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
joki%netscape.com
1998-09-18 00:35:55 +00:00
parent edc8218b01
commit 44d5557928
8 changed files with 100 additions and 25 deletions

View File

@@ -101,3 +101,8 @@ CWebShellContainer::NewWebShell(nsIWebShell *&aNewWebShell)
return rv;
}
NS_IMETHODIMP
CWebShellContainer::FindWebshellWithName(const PRUnichar* aName, nsIWebShell*& aResult)
{
return NS_ERROR_FAILURE;
}

View File

@@ -23,6 +23,7 @@ public:
NS_IMETHOD ProgressLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, PRInt32 aProgress, PRInt32 aProgressMax);
NS_IMETHOD EndLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, PRInt32 aStatus);
NS_IMETHOD NewWebShell(nsIWebShell *&aNewWebShell);
NS_IMETHOD FindWebshellWithName(const PRUnichar* aName, nsIWebShell*& aResult);
};
#endif