1 module org.eclipse.swt.internal.mozilla.nsIWindowCreator;
2 
3 import java.lang.all;
4 
5 import org.eclipse.swt.internal.mozilla.Common;
6 import org.eclipse.swt.internal.mozilla.nsID;
7 import org.eclipse.swt.internal.mozilla.nsISupports;
8 
9 import org.eclipse.swt.internal.mozilla.nsIWebBrowserChrome;
10 
11 const char[] NS_IWINDOWCREATOR_IID_STR = "30465632-a777-44cc-90f9-8145475ef999";
12 
13 const nsIID NS_IWINDOWCREATOR_IID= 
14   {0x30465632, 0xa777, 0x44cc, 
15     [ 0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99 ]};
16 
17 interface nsIWindowCreator : nsISupports {
18 
19   static const char[] IID_STR = NS_IWINDOWCREATOR_IID_STR;
20   static const nsIID IID = NS_IWINDOWCREATOR_IID;
21 
22 extern(System):
23   nsresult CreateChromeWindow(nsIWebBrowserChrome parent, PRUint32 chromeFlags, nsIWebBrowserChrome *_retval);
24 
25 }
26