comparison dwt/internal/mozilla/nsIWebBrowser.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
13 13
14 const nsIID NS_IWEBBROWSER_IID= 14 const nsIID NS_IWEBBROWSER_IID=
15 {0x69e5df00, 0x7b8b, 0x11d3, 15 {0x69e5df00, 0x7b8b, 0x11d3,
16 [ 0xaf, 0x61, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]}; 16 [ 0xaf, 0x61, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]};
17 17
18 //extern(System)
19
20 interface nsIWebBrowser : nsISupports { 18 interface nsIWebBrowser : nsISupports {
21 19
22 static const char[] IID_STR = NS_IWEBBROWSER_IID_STR; 20 static const char[] IID_STR = NS_IWEBBROWSER_IID_STR;
23 static const nsIID IID = NS_IWEBBROWSER_IID; 21 static const nsIID IID = NS_IWEBBROWSER_IID;
24 22
23 extern(System):
25 nsresult AddWebBrowserListener(nsIWeakReference aListener, nsIID * aIID); 24 nsresult AddWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
26 nsresult RemoveWebBrowserListener(nsIWeakReference aListener, nsIID * aIID); 25 nsresult RemoveWebBrowserListener(nsIWeakReference aListener, nsIID * aIID);
27 nsresult GetContainerWindow(nsIWebBrowserChrome *aContainerWindow); 26 nsresult GetContainerWindow(nsIWebBrowserChrome *aContainerWindow);
28 nsresult SetContainerWindow(nsIWebBrowserChrome aContainerWindow); 27 nsresult SetContainerWindow(nsIWebBrowserChrome aContainerWindow);
29 nsresult GetParentURIContentListener(nsIURIContentListener *aParentURIContentListener); 28 nsresult GetParentURIContentListener(nsIURIContentListener *aParentURIContentListener);