comparison dwt/internal/mozilla/nsIDOMWindow.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
16 16
17 const nsIID NS_IDOMWINDOW_IID= 17 const nsIID NS_IDOMWINDOW_IID=
18 {0xa6cf906b, 0x15b3, 0x11d2, 18 {0xa6cf906b, 0x15b3, 0x11d2,
19 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]}; 19 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
20 20
21 //extern(System)
22
23 interface nsIDOMWindow : nsISupports { 21 interface nsIDOMWindow : nsISupports {
24 22
25 static const char[] IID_STR = NS_IDOMWINDOW_IID_STR; 23 static const char[] IID_STR = NS_IDOMWINDOW_IID_STR;
26 static const nsIID IID = NS_IDOMWINDOW_IID; 24 static const nsIID IID = NS_IDOMWINDOW_IID;
27 25
26 extern(System):
28 nsresult GetDocument(nsIDOMDocument *aDocument); 27 nsresult GetDocument(nsIDOMDocument *aDocument);
29 nsresult GetParent(nsIDOMWindow *aParent); 28 nsresult GetParent(nsIDOMWindow *aParent);
30 nsresult GetTop(nsIDOMWindow *aTop); 29 nsresult GetTop(nsIDOMWindow *aTop);
31 nsresult GetScrollbars(nsIDOMBarProp *aScrollbars); 30 nsresult GetScrollbars(nsIDOMBarProp *aScrollbars);
32 nsresult GetFrames(nsIDOMWindowCollection *aFrames); 31 nsresult GetFrames(nsIDOMWindowCollection *aFrames);