comparison dwt/internal/mozilla/nsIWindowCreator2.d @ 348:9a4d7706df52

Test Update to fix linux XPCOM interface issues
author John Reimer <terminal.node@gmail.com>
date Fri, 31 Oct 2008 21:46:44 -0700
parents 942da4b6558a
children
comparison
equal deleted inserted replaced
347:ff6dd48f5248 348:9a4d7706df52
11 11
12 const nsIID NS_IWINDOWCREATOR2_IID= 12 const nsIID NS_IWINDOWCREATOR2_IID=
13 {0xf673ec81, 0xa4b0, 0x11d6, 13 {0xf673ec81, 0xa4b0, 0x11d6,
14 [ 0x96, 0x4b, 0xeb, 0x5a, 0x2b, 0xf2, 0x16, 0xfc ]}; 14 [ 0x96, 0x4b, 0xeb, 0x5a, 0x2b, 0xf2, 0x16, 0xfc ]};
15 15
16 //extern(System)
17
18 interface nsIWindowCreator2 : nsIWindowCreator { 16 interface nsIWindowCreator2 : nsIWindowCreator {
19 17
20 static const char[] IID_STR = NS_IWINDOWCREATOR2_IID_STR; 18 static const char[] IID_STR = NS_IWINDOWCREATOR2_IID_STR;
21 static const nsIID IID = NS_IWINDOWCREATOR2_IID; 19 static const nsIID IID = NS_IWINDOWCREATOR2_IID;
22 20
21 extern(System):
23 enum { PARENT_IS_LOADING_OR_RUNNING_TIMEOUT = 1U }; 22 enum { PARENT_IS_LOADING_OR_RUNNING_TIMEOUT = 1U };
24 nsresult CreateChromeWindow2(nsIWebBrowserChrome parent, PRUint32 chromeFlags, PRUint32 contextFlags, nsIURI uri, PRBool *cancel, nsIWebBrowserChrome *_retval); 23 nsresult CreateChromeWindow2(nsIWebBrowserChrome parent, PRUint32 chromeFlags, PRUint32 contextFlags, nsIURI uri, PRBool *cancel, nsIWebBrowserChrome *_retval);
25 24
26 } 25 }
27 26