From 354df9d79ba30e65f2b3fd697aed919aff9bbeb2 Mon Sep 17 00:00:00 2001 From: "valeski%netscape.com" Date: Thu, 13 Aug 1998 20:07:17 +0000 Subject: [PATCH] 310133 - Extended the nsIDocumentLoader interface to include LoadURLOnTimer() and CancelLoadURLTimer() methods. --- webshell/public/nsIDocumentLoader.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/webshell/public/nsIDocumentLoader.h b/webshell/public/nsIDocumentLoader.h index 48aaf3f0ce7e..28550f46e492 100644 --- a/webshell/public/nsIDocumentLoader.h +++ b/webshell/public/nsIDocumentLoader.h @@ -76,6 +76,17 @@ public: NS_IMETHOD LoadURL(const nsString& aURLSpec, nsIStreamListener* aListener) = 0; + NS_IMETHOD LoadURLOnTimer(const nsString& aURLSpec, + const char* aCommand, + nsIContentViewerContainer* aContainer, + nsIPostData* aPostData = nsnull, + nsISupports* aExtraInfo = nsnull, + nsIStreamObserver* anObserver = nsnull, + PRInt32 millis = 0, + PRBool repeat = 0) = 0; + + NS_IMETHOD CancelLoadURLTimer(void) = 0; + NS_IMETHOD Stop(void) = 0; NS_IMETHOD CreateDocumentLoader(nsIDocumentLoader** anInstance) = 0;