From ea180437e2b48e82425590b78b5742a186d40734 Mon Sep 17 00:00:00 2001 From: "dmose%mozilla.org" Date: Fri, 29 Sep 2000 01:14:53 +0000 Subject: [PATCH] * pipeWrite() prototype changed from |char *| to |const char *| * infrastructure for firing progress against an nsIProgressEventSink added a=r=(not built) git-svn-id: svn://10.0.0.236/trunk@80126 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/directory/xpcom/base/src/nsLDAPChannel.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mozilla/directory/xpcom/base/src/nsLDAPChannel.h b/mozilla/directory/xpcom/base/src/nsLDAPChannel.h index e42246ba2ed..21feef439bd 100644 --- a/mozilla/directory/xpcom/base/src/nsLDAPChannel.h +++ b/mozilla/directory/xpcom/base/src/nsLDAPChannel.h @@ -45,6 +45,7 @@ #include "nsIInterfaceRequestor.h" #include "nsIStreamListener.h" #include "nsILDAPMessageListener.h" +#include "nsIProgressEventSink.h" // if the code related to the following #define ever gets removed, also // be sure to remove mCallback as well as the most (but not all) of the @@ -82,7 +83,7 @@ protected: // write down the pipe to whoever is consuming our data // - nsresult pipeWrite(char *str); + nsresult pipeWrite(const char *str); // instance vars for read/write nsIChannel attributes // @@ -108,6 +109,7 @@ protected: PRUint32 mReadPipeOffset; // how many bytes written so far? PRBool mReadPipeClosed; // has the pipe already been closed? nsCOMPtr mCallback; // callback + nsCOMPtr mEventSink; // fire status against this };