comparison dwt/internal/mozilla/nsIDOMWindow2.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
9 9
10 const nsIID NS_IDOMWINDOW2_IID= 10 const nsIID NS_IDOMWINDOW2_IID=
11 {0x65455132, 0xb96a, 0x40ec, 11 {0x65455132, 0xb96a, 0x40ec,
12 [ 0xad, 0xea, 0x52, 0xfa, 0x22, 0xb1, 0x02, 0x8c ]}; 12 [ 0xad, 0xea, 0x52, 0xfa, 0x22, 0xb1, 0x02, 0x8c ]};
13 13
14 //extern(System)
15
16 interface nsIDOMWindow2 : nsIDOMWindow { 14 interface nsIDOMWindow2 : nsIDOMWindow {
17 15
18 static const char[] IID_STR = NS_IDOMWINDOW2_IID_STR; 16 static const char[] IID_STR = NS_IDOMWINDOW2_IID_STR;
19 static const nsIID IID = NS_IDOMWINDOW2_IID; 17 static const nsIID IID = NS_IDOMWINDOW2_IID;
20 18
19 extern(System):
21 nsresult GetWindowRoot(nsIDOMEventTarget *aWindowRoot); 20 nsresult GetWindowRoot(nsIDOMEventTarget *aWindowRoot);
22 21
23 } 22 }
24 23