From 9578c1220e3120fb43801dd231233a0adcfb543b Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Fri, 15 Mar 2002 22:58:43 +0000 Subject: [PATCH] Download manager. Not part of build. a=asa --- uriloader/base/nsIDownload.idl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/uriloader/base/nsIDownload.idl b/uriloader/base/nsIDownload.idl index d73d8e2e9cdf..a849d9770d81 100644 --- a/uriloader/base/nsIDownload.idl +++ b/uriloader/base/nsIDownload.idl @@ -67,6 +67,8 @@ interface nsIDownload : nsISupports { void init(in nsIURI aSource, in nsILocalFile aTarget, in wstring aDisplayName, + in wstring openingWith, + in long long startTime, in nsIWebBrowserPersist aPersist); /** @@ -102,13 +104,13 @@ interface nsIDownload : nsISupports { /** * The time a download was started. */ - attribute long long startTime; + readonly attribute long long startTime; /** * Set this attribute to indicate that the download will be * opened with a helper application upon completion. */ - attribute wstring openingWith; + readonly attribute wstring openingWith; /** * Optional; downloading information is passed to this listener and used to @@ -121,7 +123,6 @@ interface nsIDownload : nsISupports { * Must be set if no persist object is specified (see above). */ attribute nsIObserver observer; - }; %{C++