additional comment tweaks for bug 157133 "freeze nsIHttpChannel,

nsIHttpHeaderVisitor" r/sr=nobody


git-svn-id: svn://10.0.0.236/trunk@134727 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%netscape.com 2002-12-03 22:00:54 +00:00
parent 6de131c404
commit 55762a8a68
2 changed files with 17 additions and 6 deletions

View File

@ -29,10 +29,13 @@ include $(DEPTH)/config/autoconf.mk
MODULE = necko
XPIDL_MODULE = necko_http
XPIDLSRCS = \
SDK_XPIDLSRCS = \
nsIHttpChannel.idl \
nsIHttpChannelInternal.idl \
nsIHttpHeaderVisitor.idl \
$(NULL)
XPIDLSRCS = \
nsIHttpChannelInternal.idl \
nsIHttpNotify.idl \
nsIHttpProtocolHandler.idl \
nsIHttpEventSink.idl \

View File

@ -18,21 +18,29 @@
* Rights Reserved.
*
* Contributor(s):
* Gagan Saksena <gagan@netscape.com> (original author)
* Darin Fisher <darin@netscape.com>
* Darin Fisher <darin@netscape.com> (original author)
*/
#include "nsISupports.idl"
/**
* Implement this interface to visit http headers.
*
* @status UNDER_REVIEW
* @status FROZEN
*/
[scriptable, uuid(0cf40717-d7c1-4a94-8c1e-d6c9734101bb)]
interface nsIHttpHeaderVisitor : nsISupports
{
/**
* Called by the nsIHttpChannel implementation when visiting request and
* response headers.
*
* @param aHeader
* the header being visited.
* @param aValue
* the header value (possibly a comma delimited list).
*
* @throw any exception to terminate enumeration
*/
void visitHeader(in ACString header, in ACString value);
void visitHeader(in ACString aHeader, in ACString aValue);
};