mshtml: Fixed nsIHttpChannelInternal declaration.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e3389112df
commit
4dc8a96f78
|
@ -652,9 +652,11 @@ interface nsIHttpChannelInternal : nsISupports
|
|||
nsresult SetDocumentURI(nsIURI *aDocumentURI);
|
||||
nsresult GetRequestVersion(uint32_t *major, uint32_t *minor);
|
||||
nsresult GetResponseVersion(uint32_t *major, uint32_t *minor);
|
||||
nsresult TakeAllSecurityMessages(void /*securityMessagesArray*/ *aMessages);
|
||||
nsresult TakeAllSecurityMessages(void /*nsCOMArray<nsISecurityConsoleMessage>*/ *aMessages);
|
||||
nsresult SetCookie(const char *aCookieHeader);
|
||||
nsresult SetupFallbackChannel(const char *aFallbackKey);
|
||||
nsresult GetThirdPartyFlags(uint32_t *aThirdPartyFlags);
|
||||
nsresult SetThirdPartyFlags(uint32_t aThirdPartyFlags);
|
||||
nsresult GetForceAllowThirdPartyCookie(bool *aForceAllowThirdPartyCookie);
|
||||
nsresult SetForceAllowThirdPartyCookie(bool aForceAllowThirdPartyCookie);
|
||||
nsresult GetCanceled(bool *aCanceled);
|
||||
|
|
|
@ -1726,6 +1726,20 @@ static nsresult NSAPI nsHttpChannelInternal_SetupFallbackChannel(nsIHttpChannelI
|
|||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
static nsresult NSAPI nsHttpChannelInternal_GetThirdPartyFlags(nsIHttpChannelInternal *iface, UINT32 *aThirdPartyFlags)
|
||||
{
|
||||
nsChannel *This = impl_from_nsIHttpChannelInternal(iface);
|
||||
FIXME("(%p)->(%p)\n", This, aThirdPartyFlags);
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
static nsresult NSAPI nsHttpChannelInternal_SetThirdPartyFlags(nsIHttpChannelInternal *iface, UINT32 aThirdPartyFlags)
|
||||
{
|
||||
nsChannel *This = impl_from_nsIHttpChannelInternal(iface);
|
||||
FIXME("(%p)->(%x)\n", This, aThirdPartyFlags);
|
||||
return NS_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
static nsresult NSAPI nsHttpChannelInternal_GetForceAllowThirdPartyCookie(nsIHttpChannelInternal *iface, cpp_bool *aForceThirdPartyCookie)
|
||||
{
|
||||
nsChannel *This = impl_from_nsIHttpChannelInternal(iface);
|
||||
|
@ -1974,6 +1988,8 @@ static const nsIHttpChannelInternalVtbl nsHttpChannelInternalVtbl = {
|
|||
nsHttpChannelInternal_TakeAllSecurityMessages,
|
||||
nsHttpChannelInternal_SetCookie,
|
||||
nsHttpChannelInternal_SetupFallbackChannel,
|
||||
nsHttpChannelInternal_GetThirdPartyFlags,
|
||||
nsHttpChannelInternal_SetThirdPartyFlags,
|
||||
nsHttpChannelInternal_GetForceAllowThirdPartyCookie,
|
||||
nsHttpChannelInternal_SetForceAllowThirdPartyCookie,
|
||||
nsHttpChannelInternal_GetCanceled,
|
||||
|
|
Loading…
Reference in New Issue