Mozilla/mozilla/webshell/embed/ActiveX/WebShellContainer.h
joki%netscape.com c5e8af16d8 Remove duplicate functionality of nsIBrowserWindow and nsIWebShellContainer.
git-svn-id: svn://10.0.0.236/trunk@9586 18797224-902f-48f8-a5cc-f745e15eee43
1998-09-09 01:19:11 +00:00

28 lines
734 B
C++

#ifndef WEBSHELLCONTAINER_H
#define WEBSHELLCONTAINER_H
class CWebShellContainer :
public nsIWebShellContainer
{
public:
CWebShellContainer();
protected:
virtual ~CWebShellContainer();
// Protected members
protected:
nsString m_sTitle;
public:
// nsISupports
NS_DECL_ISUPPORTS
// nsIWebShellContainer
NS_IMETHOD WillLoadURL(nsIWebShell* aShell, const PRUnichar* aURL, nsLoadType aReason);
NS_IMETHOD BeginLoadURL(nsIWebShell* aShell, const PRUnichar* aURL);
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);
};
#endif