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
74c4a73f
Commit
74c4a73f
authored
Dec 17, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 18, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Don't use necko nsIHttpChannelInternal implementation in nsChannel object.
parent
79dd0118
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
30 deletions
+9
-30
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-1
nsio.c
dlls/mshtml/nsio.c
+9
-29
No files found.
dlls/mshtml/mshtml_private.h
View file @
74c4a73f
...
...
@@ -435,7 +435,6 @@ typedef struct {
nsIChannel
*
channel
;
nsIHttpChannel
*
http_channel
;
nsIHttpChannelInternal
*
http_channel_internal
;
nsIWineURI
*
uri
;
nsIInputStream
*
post_data_stream
;
nsILoadGroup
*
load_group
;
...
...
dlls/mshtml/nsio.c
View file @
74c4a73f
...
...
@@ -221,8 +221,6 @@ static nsrefcnt NSAPI nsChannel_Release(nsIHttpChannel *iface)
nsIChannel_Release
(
This
->
channel
);
if
(
This
->
http_channel
)
nsIHttpChannel_Release
(
This
->
http_channel
);
if
(
This
->
http_channel_internal
)
nsIHttpChannel_Release
(
This
->
http_channel_internal
);
if
(
This
->
owner
)
nsISupports_Release
(
This
->
owner
);
if
(
This
->
post_data_stream
)
...
...
@@ -1293,10 +1291,8 @@ static nsresult NSAPI nsHttpChannelInternal_GetDocumentURI(nsIHttpChannelInterna
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_GetDocumentURI
(
This
->
http_channel_internal
,
aDocumentURI
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1304,10 +1300,8 @@ static nsresult NSAPI nsHttpChannelInternal_SetDocumentURI(nsIHttpChannelInterna
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_SetDocumentURI
(
This
->
http_channel_internal
,
aDocumentURI
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1315,10 +1309,8 @@ static nsresult NSAPI nsHttpChannelInternal_GetRequestVersion(nsIHttpChannelInte
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_GetRequestVersion
(
This
->
http_channel_internal
,
major
,
minor
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1326,10 +1318,8 @@ static nsresult NSAPI nsHttpChannelInternal_GetResponseVersion(nsIHttpChannelInt
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_GetResponseVersion
(
This
->
http_channel_internal
,
major
,
minor
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1337,10 +1327,8 @@ static nsresult NSAPI nsHttpChannelInternal_SetCookie(nsIHttpChannelInternal *if
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_SetCookie
(
This
->
http_channel_internal
,
aCookieHeader
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1348,10 +1336,8 @@ static nsresult NSAPI nsHttpChannelInternal_SetupFallbackChannel(nsIHttpChannelI
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_SetupFallbackChannel
(
This
->
http_channel_internal
,
aFallbackKey
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1359,10 +1345,8 @@ static nsresult NSAPI nsHttpChannelInternal_GetForceAllowThirdPartyCookie(nsIHtt
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_GetForceAllowThirdPartyCookie
(
This
->
http_channel_internal
,
aForceThirdPartyCookie
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -1370,10 +1354,8 @@ static nsresult NSAPI nsHttpChannelInternal_SetForceAllowThirdPartyCookie(nsIHtt
{
nsChannel
*
This
=
NSHTTPINTERNAL_THIS
(
iface
);
TRAC
E
(
"(%p)->()
\n
"
,
This
);
FIXM
E
(
"(%p)->()
\n
"
,
This
);
if
(
This
->
http_channel_internal
)
return
nsIHttpChannelInternal_SetForceAllowThirdPartyCookie
(
This
->
http_channel_internal
,
aForceThirdPartyCookie
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
...
...
@@ -2726,10 +2708,8 @@ static nsresult NSAPI nsIOService_NewChannelFromURI(nsIIOService *iface, nsIURI
nsIWineURI_GetWineURL
(
wine_uri
,
&
url
);
ret
->
url_scheme
=
url
&&
SUCCEEDED
(
ParseURLW
(
url
,
&
parsed_url
))
?
parsed_url
.
nScheme
:
URL_SCHEME_UNKNOWN
;
if
(
channel
)
{
if
(
channel
)
nsIChannel_QueryInterface
(
channel
,
&
IID_nsIHttpChannel
,
(
void
**
)
&
ret
->
http_channel
);
nsIChannel_QueryInterface
(
channel
,
&
IID_nsIHttpChannelInternal
,
(
void
**
)
&
ret
->
http_channel_internal
);
}
*
_retval
=
NSCHANNEL
(
ret
);
return
NS_OK
;
...
...
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