comparison dwt/internal/mozilla/nsIDOMStorageItem.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
12 12
13 const nsIID NS_IDOMSTORAGEITEM_IID= 13 const nsIID NS_IDOMSTORAGEITEM_IID=
14 {0x0cc37c78, 0x4c5f, 0x48e1, 14 {0x0cc37c78, 0x4c5f, 0x48e1,
15 [ 0xad, 0xfc, 0x74, 0x80, 0xb8, 0xfe, 0x9d, 0xc4 ]}; 15 [ 0xad, 0xfc, 0x74, 0x80, 0xb8, 0xfe, 0x9d, 0xc4 ]};
16 16
17 //extern(System)
18
19 interface nsIDOMStorageItem : nsISupports { 17 interface nsIDOMStorageItem : nsISupports {
20 18
21 static const char[] IID_STR = NS_IDOMSTORAGEITEM_IID_STR; 19 static const char[] IID_STR = NS_IDOMSTORAGEITEM_IID_STR;
22 static const nsIID IID = NS_IDOMSTORAGEITEM_IID; 20 static const nsIID IID = NS_IDOMSTORAGEITEM_IID;
23 21
22 extern(System):
24 nsresult GetSecure(PRBool *aSecure); 23 nsresult GetSecure(PRBool *aSecure);
25 nsresult SetSecure(PRBool aSecure); 24 nsresult SetSecure(PRBool aSecure);
26 nsresult GetValue(nsAString * aValue); 25 nsresult GetValue(nsAString * aValue);
27 nsresult SetValue(nsAString * aValue); 26 nsresult SetValue(nsAString * aValue);
28 27