Camino only - Missed checkin from bug 351504. r=kreeger sr=josh

This commit is contained in:
stuart.morgan%alumni.case.edu 2007-02-21 14:43:34 +00:00
parent bb36ebed84
commit 7959bdb0ad

View File

@ -107,7 +107,7 @@ class CHDownloader;
// A formal protocol for something that implements progress display.
// Embedders can make a window or view controller that conforms to this
// protocol, and reuse nsDownloadListener to get download UI.
@protocol CHDownloadProgressDisplay
@protocol CHDownloadProgressDisplay <NSObject>
- (void)onStartDownload:(BOOL)isFileSave;
- (void)onEndDownload:(BOOL)completedOK statusCode:(nsresult)aStatus;
@ -126,7 +126,7 @@ class CHDownloader;
@end
// A formal protocol which is implemented by a factory of progress UI.
@protocol CHDownloadDisplayFactory
@protocol CHDownloadDisplayFactory <NSObject>
- (id <CHDownloadProgressDisplay>)createProgressDisplay;