adding accessor for nsIPrompt member variable. bugs 25684,28594. r=gagan@netscape.com

git-svn-id: svn://10.0.0.236/trunk@72390 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
danm%netscape.com
2000-06-16 14:52:53 +00:00
parent 24afa3867d
commit 30659fd9ec
2 changed files with 14 additions and 2 deletions

View File

@@ -28,6 +28,7 @@ interface nsISimpleEnumerator;
interface nsIAtom;
interface nsIInputStream;
interface nsIURI;
interface nsIPrompt;
[scriptable, uuid(35c00430-1938-11d3-933a-000064657374)]
interface nsIHTTPChannel : nsIChannel
@@ -83,12 +84,14 @@ interface nsIHTTPChannel : nsIChannel
readonly attribute nsIStreamListener ResponseDataListener;
readonly attribute string Charset;
readonly attribute string Charset;
attribute PRBool AuthTriedWithPrehost;
attribute PRBool AuthTriedWithPrehost;
readonly attribute PRBool UsingProxy;
readonly attribute nsIPrompt prompter;
/*
This string if set is used for forming the final request. So if you
call SetProxyRequestURI(foo) on an HTTP Channel, the outbound

View File

@@ -2328,6 +2328,15 @@ nsHTTPChannel::GetUsingProxy(PRBool *aUsingProxy)
return NS_OK;
}
NS_IMETHODIMP
nsHTTPChannel::GetPrompter(nsIPrompt **aPrompter) {
if (!aPrompter)
return NS_ERROR_NULL_POINTER;
*aPrompter = mPrompter;
NS_IF_ADDREF(*aPrompter);
return NS_OK;
}
NS_IMETHODIMP
nsHTTPChannel::GetSecurityInfo(nsISupports * *aSecurityInfo)