Mozilla/mozilla/webshell/embed/ActiveX/WebShellContainer.h
rpotts%netscape.com 8d1509f20c Fixed build bustage...
git-svn-id: svn://10.0.0.236/trunk@10356 18797224-902f-48f8-a5cc-f745e15eee43
1998-09-18 05:25:15 +00:00

29 lines
816 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);
NS_IMETHOD FindWebShellWithName(const PRUnichar* aName, nsIWebShell*& aResult);
};
#endif