From 73e2ec4c7e7e33a1aeb656d27eb3359ba50b36b1 Mon Sep 17 00:00:00 2001 From: "rpotts%netscape.com" Date: Thu, 14 Jan 1999 06:37:11 +0000 Subject: [PATCH] Added OnStartURLLoad() notification which is called whenever the document loader has established a connection... git-svn-id: svn://10.0.0.236/trunk@17713 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webshell/public/nsIDocumentLoaderObserver.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mozilla/webshell/public/nsIDocumentLoaderObserver.h b/mozilla/webshell/public/nsIDocumentLoaderObserver.h index 211ae525aaa..056ba6b9f09 100644 --- a/mozilla/webshell/public/nsIDocumentLoaderObserver.h +++ b/mozilla/webshell/public/nsIDocumentLoaderObserver.h @@ -21,6 +21,11 @@ #include "nsISupports.h" +// Forward declarations... +class nsIURL; +class nsIContentViewer; + + /* f6b4f550-317c-11d2-bd8c-00805f8ae3f4 */ #define NS_IDOCUMENT_LOADER_OBSERVER_IID \ { 0xf6b4f550, 0x317c, 0x11d2, \ @@ -33,6 +38,8 @@ class nsIDocumentLoaderObserver : public nsISupports { public: + NS_IMETHOD OnStartURLLoad(nsIURL* aURL, const char* aContentType, + nsIContentViewer* aViewer) = 0; /** * Notify the observer that all connections are complete */