mshtml: Added nsIChannel::GetName implementation.

This commit is contained in:
Jacek Caban 2010-08-18 13:38:18 +02:00 committed by Alexandre Julliard
parent e83402122d
commit a9dec383d5
1 changed files with 2 additions and 2 deletions

View File

@ -509,9 +509,9 @@ static nsresult NSAPI nsChannel_GetName(nsIHttpChannel *iface, nsACString *aName
{
nsChannel *This = NSCHANNEL_THIS(iface);
FIXME("(%p)->(%p)\n", This, aName);
TRACE("(%p)->(%p)\n", This, aName);
return NS_ERROR_NOT_IMPLEMENTED;
return nsIURI_GetSpec(NSURI(This->uri), aName);
}
static nsresult NSAPI nsChannel_IsPending(nsIHttpChannel *iface, PRBool *_retval)