NOT PART OF BUILD. Simple test app for Gecko written using wxWindows

git-svn-id: svn://10.0.0.236/trunk@144101 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
locka%iol.ie
2003-06-24 20:15:14 +00:00
parent d193753760
commit 32262dc4eb
28 changed files with 2321 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#include "GeckoWindowCreator.h"
#include "GeckoContainer.h"
#include "nsIWebBrowserChrome.h"
GeckoWindowCreator::GeckoWindowCreator()
{
}
GeckoWindowCreator::~GeckoWindowCreator()
{
}
NS_IMPL_ISUPPORTS1(GeckoWindowCreator, nsIWindowCreator)
NS_IMETHODIMP
GeckoWindowCreator::CreateChromeWindow(nsIWebBrowserChrome *parent,
PRUint32 chromeFlags,
nsIWebBrowserChrome **_retval)
{
NS_ENSURE_ARG_POINTER(_retval);
// AppCallbacks::CreateBrowserWindow(PRInt32(chromeFlags), parent, _retval);
// TODO QI nsIGeckoContainer
*_retval = nsnull;
return *_retval ? NS_OK : NS_ERROR_FAILURE;
}