1 module org.eclipse.swt.internal.mozilla.nsIWindowCreator2; 2 3 import java.lang.all; 4 5 import org.eclipse.swt.internal.mozilla.Common; 6 import org.eclipse.swt.internal.mozilla.nsID; 7 8 import org.eclipse.swt.internal.mozilla.nsIWindowCreator; 9 import org.eclipse.swt.internal.mozilla.nsIURI; 10 import org.eclipse.swt.internal.mozilla.nsIWebBrowserChrome; 11 12 const char[] NS_IWINDOWCREATOR2_IID_STR = "f673ec81-a4b0-11d6-964b-eb5a2bf216fc"; 13 14 const nsIID NS_IWINDOWCREATOR2_IID= 15 {0xf673ec81, 0xa4b0, 0x11d6, 16 [ 0x96, 0x4b, 0xeb, 0x5a, 0x2b, 0xf2, 0x16, 0xfc ]}; 17 18 interface nsIWindowCreator2 : nsIWindowCreator { 19 20 static const char[] IID_STR = NS_IWINDOWCREATOR2_IID_STR; 21 static const nsIID IID = NS_IWINDOWCREATOR2_IID; 22 23 extern(System): 24 enum { PARENT_IS_LOADING_OR_RUNNING_TIMEOUT = 1U }; 25 nsresult CreateChromeWindow2(nsIWebBrowserChrome parent, PRUint32 chromeFlags, PRUint32 contextFlags, nsIURI uri, PRBool *cancel, nsIWebBrowserChrome *_retval); 26 27 } 28