Commit 4dc8a96f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed nsIHttpChannelInternal declaration.

parent e3389112
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment