comparison dwt/internal/mozilla/nsIHelperAppLauncher.d @ 341:942da4b6558a

Ongoing fixup for compile
author John Reimer <terminal.node@gmail.com>
date Sun, 26 Oct 2008 21:19:51 -0700
parents eec6ddb07873
children 9a4d7706df52
comparison
equal deleted inserted replaced
340:3f4a5c7d138f 341:942da4b6558a
14 14
15 const nsIID NS_IHELPERAPPLAUNCHER_IID= 15 const nsIID NS_IHELPERAPPLAUNCHER_IID=
16 {0x9503d0fe, 0x4c9d, 0x11d4, 16 {0x9503d0fe, 0x4c9d, 0x11d4,
17 [ 0x98, 0xd0, 0x00, 0x10, 0x83, 0x01, 0x0e, 0x9b ]}; 17 [ 0x98, 0xd0, 0x00, 0x10, 0x83, 0x01, 0x0e, 0x9b ]};
18 18
19 extern(System) 19 //extern(System)
20 20
21 interface nsIHelperAppLauncher : nsISupports { 21 interface nsIHelperAppLauncher : nsISupports {
22 22
23 static const char[] IID_STR = NS_IHELPERAPPLAUNCHER_IID_STR; 23 static const char[] IID_STR = NS_IHELPERAPPLAUNCHER_IID_STR;
24 static const nsIID IID = NS_IHELPERAPPLAUNCHER_IID; 24 static const nsIID IID = NS_IHELPERAPPLAUNCHER_IID;
29 nsresult SaveToDisk(nsIFile aNewFileLocation, PRBool aRememberThisPreference); 29 nsresult SaveToDisk(nsIFile aNewFileLocation, PRBool aRememberThisPreference);
30 nsresult LaunchWithApplication(nsIFile aApplication, PRBool aRememberThisPreference); 30 nsresult LaunchWithApplication(nsIFile aApplication, PRBool aRememberThisPreference);
31 nsresult Cancel(); 31 nsresult Cancel();
32 nsresult SetWebProgressListener(nsIWebProgressListener aWebProgressListener); 32 nsresult SetWebProgressListener(nsIWebProgressListener aWebProgressListener);
33 nsresult CloseProgressWindow(); 33 nsresult CloseProgressWindow();
34 nsresult GetDownloadInfo( nsIURI* aSourceUrl, PRTime* aTimeDownloadStarted, nsIFile* result) 34 nsresult GetDownloadInfo( nsIURI* aSourceUrl, PRTime* aTimeDownloadStarted, nsIFile* result);
35 35
36 } 36 }