Hi,
All the embedding samples use something like
nsCOMPtr<nsIBaseWindow> browserBaseWindow =
do_QueryInterface(mWebBrowser);
browserBaseWindow->InitWindow( mNativeWindow,
nsnull, aX, aY, aCX, aCY);
browserBaseWindow->Create();
to create their browser window. However, nsIBaseWindow is missing in the gecko SDK. Is there a way to work around that or is this a bug?
The SDK only contains APIs that are frozen. nsIBaseWindow is not frozen (and will not be frozen in it's current state). Basically, it is impossible to bootstrap gecko to an embedded window using existing frozen APIs, which is a long-term project that we need to fix.
--BDS _______________________________________________ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding
