|
Revision 327:b0d7eb5bd76c, 0.7 kB
(checked in by John Reimer <terminal.node@gmail.com>, 3 years ago)
|
Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win
|
| Line | |
|---|
| 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 |
interface nsISecureBrowserUI : nsISupports { |
|---|
| 17 |
|
|---|
| 18 |
static const char[] IID_STR = NS_ISECUREBROWSERUI_IID_STR; |
|---|
| 19 |
static const nsIID IID = NS_ISECUREBROWSERUI_IID; |
|---|
| 20 |
|
|---|
| 21 |
extern(System): |
|---|
| 22 |
nsresult Init(nsIDOMWindow window); |
|---|
| 23 |
nsresult GetState(PRUint32 *aState); |
|---|
| 24 |
nsresult GetTooltipText(nsAString * aTooltipText); |
|---|
| 25 |
|
|---|
| 26 |
} |
|---|