Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4dc8a96f
Commit
4dc8a96f
authored
Dec 04, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fixed nsIHttpChannelInternal declaration.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e3389112
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
nsiface.idl
dlls/mshtml/nsiface.idl
+3
-1
nsio.c
dlls/mshtml/nsio.c
+16
-0
No files found.
dlls/mshtml/nsiface.idl
View file @
4dc8a96f
...
...
@@ -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);
...
...
dlls/mshtml/nsio.c
View file @
4dc8a96f
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment