comparison dwt/internal/mozilla/nsITransfer.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
17 17
18 const nsIID NS_ITRANSFER_IID= 18 const nsIID NS_ITRANSFER_IID=
19 {0x23c51569, 0xe9a1, 0x4a92, 19 {0x23c51569, 0xe9a1, 0x4a92,
20 [ 0xad, 0xeb, 0x37, 0x23, 0xdb, 0x82, 0xef, 0x7c ]}; 20 [ 0xad, 0xeb, 0x37, 0x23, 0xdb, 0x82, 0xef, 0x7c ]};
21 21
22 //extern(System)
23
24 interface nsITransfer : nsIWebProgressListener2 { 22 interface nsITransfer : nsIWebProgressListener2 {
25 23
26 static const char[] IID_STR = NS_ITRANSFER_IID_STR; 24 static const char[] IID_STR = NS_ITRANSFER_IID_STR;
27 static const nsIID IID = NS_ITRANSFER_IID; 25 static const nsIID IID = NS_ITRANSFER_IID;
28 26
27 extern(System):
29 nsresult Init(nsIURI aSource, nsIURI aTarget, nsAString * aDisplayName, nsIMIMEInfo aMIMEInfo, PRTime startTime, nsILocalFile aTempFile, nsICancelable aCancelable); 28 nsresult Init(nsIURI aSource, nsIURI aTarget, nsAString * aDisplayName, nsIMIMEInfo aMIMEInfo, PRTime startTime, nsILocalFile aTempFile, nsICancelable aCancelable);
30 29
31 } 30 }
32 31