comparison dwt/internal/mozilla/nsIAuthPromptCallback.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_IAUTHPROMPTCALLBACK_IID= 10 const nsIID NS_IAUTHPROMPTCALLBACK_IID=
11 {0xbdc387d7, 0x2d29, 0x4cac, 11 {0xbdc387d7, 0x2d29, 0x4cac,
12 [ 0x92, 0xf1, 0xdd, 0x75, 0xd7, 0x86, 0x63, 0x1d ]}; 12 [ 0x92, 0xf1, 0xdd, 0x75, 0xd7, 0x86, 0x63, 0x1d ]};
13 13
14 //extern(System)
15
16 interface nsIAuthPromptCallback : nsISupports { 14 interface nsIAuthPromptCallback : nsISupports {
17 15
18 static const char[] IID_STR = NS_IAUTHPROMPTCALLBACK_IID_STR; 16 static const char[] IID_STR = NS_IAUTHPROMPTCALLBACK_IID_STR;
19 static const nsIID IID = NS_IAUTHPROMPTCALLBACK_IID; 17 static const nsIID IID = NS_IAUTHPROMPTCALLBACK_IID;
20 18
19 extern(System):
21 nsresult OnAuthAvailable(nsISupports aContext, nsIAuthInformation aAuthInfo); 20 nsresult OnAuthAvailable(nsISupports aContext, nsIAuthInformation aAuthInfo);
22 nsresult OnAuthCancelled(nsISupports aContext, PRBool userCancel); 21 nsresult OnAuthCancelled(nsISupports aContext, PRBool userCancel);
23 } 22 }