root/dwt/internal/mozilla/nsIDOMStorageItem.d

Revision 327:b0d7eb5bd76c, 0.8 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.nsIDOMStorageItem;
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.nsStringAPI;
8
9 alias PRUint64 DOMTimeStamp;
10
11 const char[] NS_IDOMSTORAGEITEM_IID_STR = "0cc37c78-4c5f-48e1-adfc-7480b8fe9dc4";
12
13 const nsIID NS_IDOMSTORAGEITEM_IID=
14   {0x0cc37c78, 0x4c5f, 0x48e1,
15     [ 0xad, 0xfc, 0x74, 0x80, 0xb8, 0xfe, 0x9d, 0xc4 ]};
16
17 interface nsIDOMStorageItem : nsISupports {
18
19   static const char[] IID_STR = NS_IDOMSTORAGEITEM_IID_STR;
20   static const nsIID IID = NS_IDOMSTORAGEITEM_IID;
21
22 extern(System):
23   nsresult GetSecure(PRBool *aSecure);
24   nsresult SetSecure(PRBool aSecure);
25   nsresult GetValue(nsAString * aValue);
26   nsresult SetValue(nsAString * aValue);
27
28 }
Note: See TracBrowser for help on using the browser.