comparison dwt/internal/mozilla/nsICookie2.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
9 9
10 const nsIID NS_ICOOKIE2_IID= 10 const nsIID NS_ICOOKIE2_IID=
11 {0xd3493503, 0x7854, 0x46ed, 11 {0xd3493503, 0x7854, 0x46ed,
12 [ 0x82, 0x84, 0x8a, 0xf5, 0x4a, 0x84, 0x7e, 0xfb ]}; 12 [ 0x82, 0x84, 0x8a, 0xf5, 0x4a, 0x84, 0x7e, 0xfb ]};
13 13
14 //extern(System)
15
16 interface nsICookie2 : nsICookie { 14 interface nsICookie2 : nsICookie {
17 15
18 static const char[] IID_STR = NS_ICOOKIE2_IID_STR; 16 static const char[] IID_STR = NS_ICOOKIE2_IID_STR;
19 static const nsIID IID = NS_ICOOKIE2_IID; 17 static const nsIID IID = NS_ICOOKIE2_IID;
20 18
19 extern(System):
21 nsresult GetRawHost(nsACString * aRawHost); 20 nsresult GetRawHost(nsACString * aRawHost);
22 nsresult GetIsSession(PRBool *aIsSession); 21 nsresult GetIsSession(PRBool *aIsSession);
23 nsresult GetExpiry(PRInt64 *aExpiry); 22 nsresult GetExpiry(PRInt64 *aExpiry);
24 } 23 }
25 24