comparison dwt/internal/mozilla/nsISecureBrowserUI.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.nsISecureBrowserUI;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 import dwt.internal.mozilla.nsIDOMWindow;
8 import dwt.internal.mozilla.nsStringAPI;
9
10 const char[] NS_ISECUREBROWSERUI_IID_STR = "081e31e0-a144-11d3-8c7c-00609792278c";
11
12 const nsIID NS_ISECUREBROWSERUI_IID=
13 {0x081e31e0, 0xa144, 0x11d3,
14 [ 0x8c, 0x7c, 0x00, 0x60, 0x97, 0x92, 0x27, 0x8c ]};
15
16 extern(System)
17
18 interface nsISecureBrowserUI : nsISupports {
19
20 static const char[] IID_STR = NS_ISECUREBROWSERUI_IID_STR;
21 static const nsIID IID = NS_ISECUREBROWSERUI_IID;
22
23 nsresult Init(nsIDOMWindow window);
24 nsresult GetState(PRUint32 *aState);
25 nsresult GetTooltipText(nsAString * aTooltipText);
26
27 }
28