comparison dwt/internal/mozilla/nsIWindowCreator2.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module dwt.internal.mozilla.nsIWindowCreator2;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIWindowCreator;
7 import dwt.internal.mozilla.nsIURI;
8 import dwt.internal.mozilla.nsIWebBrowserChrome;
9
10 const char[] NS_IWINDOWCREATOR2_IID_STR = "f673ec81-a4b0-11d6-964b-eb5a2bf216fc";
11
12 const nsIID NS_IWINDOWCREATOR2_IID=
13 {0xf673ec81, 0xa4b0, 0x11d6,
14 [ 0x96, 0x4b, 0xeb, 0x5a, 0x2b, 0xf2, 0x16, 0xfc ]};
15
16 extern(System)
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 enum { PARENT_IS_LOADING_OR_RUNNING_TIMEOUT = 1U };
24 nsresult CreateChromeWindow2(nsIWebBrowserChrome parent, PRUint32 chromeFlags, PRUint32 contextFlags, nsIURI uri, PRBool *cancel, nsIWebBrowserChrome *_retval);
25
26 }
27