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
20080c61
Commit
20080c61
authored
Feb 24, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Wine Gecko 2.36 release.
parent
203c47e6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
4 deletions
+91
-4
addons.c
dlls/appwiz.cpl/addons.c
+3
-3
nsiface.idl
dlls/mshtml/nsiface.idl
+0
-0
nsio.c
dlls/mshtml/nsio.c
+88
-1
No files found.
dlls/appwiz.cpl/addons.c
View file @
20080c61
...
...
@@ -52,14 +52,14 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
appwizcpl
);
#define GECKO_VERSION "2.3
4
"
#define GECKO_VERSION "2.3
6
"
#ifdef __i386__
#define ARCH_STRING "x86"
#define GECKO_SHA "
e9646cf9d683a6f4e254bcff3864a863fe8287e9
"
#define GECKO_SHA "
08b02bf0e3ff3a315135afa1132ddb3a25a63e15
"
#elif defined(__x86_64__)
#define ARCH_STRING "x86_64"
#define GECKO_SHA "
2b4274f7c3b22b74c35ebc0423bb943597af3945
"
#define GECKO_SHA "
a7624eb685d04c4ef1f4f093095a5a324808d57c
"
#else
#define ARCH_STRING ""
#define GECKO_SHA "???"
...
...
dlls/mshtml/nsiface.idl
View file @
20080c61
This diff is collapsed.
Click to expand it.
dlls/mshtml/nsio.c
View file @
20080c61
...
...
@@ -1277,6 +1277,20 @@ static nsresult NSAPI nsChannel_SetReferrer(nsIHttpChannel *iface, nsIURI *aRefe
return
NS_OK
;
}
static
nsresult
NSAPI
nsChannel_GetReferrerPolicy
(
nsIHttpChannel
*
iface
,
UINT32
*
aReferrerPolicy
)
{
nsChannel
*
This
=
impl_from_nsIHttpChannel
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
aReferrerPolicy
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsChannel_SetReferrerWithPolicy
(
nsIHttpChannel
*
iface
,
nsIURI
*
aReferrer
,
UINT32
aReferrerPolicy
)
{
nsChannel
*
This
=
impl_from_nsIHttpChannel
(
iface
);
FIXME
(
"(%p)->(%p %x)
\n
"
,
This
,
aReferrer
,
aReferrerPolicy
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsChannel_GetRequestHeader
(
nsIHttpChannel
*
iface
,
const
nsACString
*
aHeader
,
nsACString
*
_retval
)
{
...
...
@@ -1504,6 +1518,8 @@ static const nsIHttpChannelVtbl nsChannelVtbl = {
nsChannel_SetRequestMethod
,
nsChannel_GetReferrer
,
nsChannel_SetReferrer
,
nsChannel_GetReferrerPolicy
,
nsChannel_SetReferrerWithPolicy
,
nsChannel_GetRequestHeader
,
nsChannel_SetRequestHeader
,
nsChannel_VisitRequestHeaders
,
...
...
@@ -1876,6 +1892,20 @@ static nsresult NSAPI nsHttpChannelInternal_GetLastModifiedTime(nsIHttpChannelIn
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsHttpChannelInternal_ForceNoIntercept
(
nsIHttpChannelInternal
*
iface
)
{
nsChannel
*
This
=
impl_from_nsIHttpChannelInternal
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsHttpChannelInternal_GetTopWindowURI
(
nsIHttpChannelInternal
*
iface
,
nsIURI
**
aTopWindowURI
)
{
nsChannel
*
This
=
impl_from_nsIHttpChannelInternal
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
aTopWindowURI
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
const
nsIHttpChannelInternalVtbl
nsHttpChannelInternalVtbl
=
{
nsHttpChannelInternal_QueryInterface
,
nsHttpChannelInternal_AddRef
,
...
...
@@ -1908,7 +1938,9 @@ static const nsIHttpChannelInternalVtbl nsHttpChannelInternalVtbl = {
nsHttpChannelInternal_SetResponseTimeoutEnabled
,
nsHttpChannelInternal_GetApiRedirectToURI
,
nsHttpChannelInternal_AddRedirect
,
nsHttpChannelInternal_GetLastModifiedTime
nsHttpChannelInternal_GetLastModifiedTime
,
nsHttpChannelInternal_ForceNoIntercept
,
nsHttpChannelInternal_GetTopWindowURI
};
...
...
@@ -3342,6 +3374,18 @@ static nsresult NSAPI nsProtocolHandler_NewURI(nsIProtocolHandler *iface,
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsProtocolHandler_NewChannel2
(
nsIProtocolHandler
*
iface
,
nsIURI
*
aURI
,
nsILoadInfo
*
aLoadInfo
,
nsIChannel
**
_retval
)
{
nsProtocolHandler
*
This
=
impl_from_nsIProtocolHandler
(
iface
);
TRACE
(
"(%p)->(%p %p %p)
\n
"
,
This
,
aURI
,
aLoadInfo
,
_retval
);
if
(
This
->
nshandler
)
return
nsIProtocolHandler_NewChannel2
(
This
->
nshandler
,
aURI
,
aLoadInfo
,
_retval
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsProtocolHandler_NewChannel
(
nsIProtocolHandler
*
iface
,
nsIURI
*
aURI
,
nsIChannel
**
_retval
)
{
...
...
@@ -3374,6 +3418,7 @@ static const nsIProtocolHandlerVtbl nsProtocolHandlerVtbl = {
nsProtocolHandler_GetDefaultPort
,
nsProtocolHandler_GetProtocolFlags
,
nsProtocolHandler_NewURI
,
nsProtocolHandler_NewChannel2
,
nsProtocolHandler_NewChannel
,
nsProtocolHandler_AllowPort
};
...
...
@@ -3535,6 +3580,15 @@ static nsresult NSAPI nsIOService_NewFileURI(nsIIOService *iface, nsIFile *aFile
return
nsIIOService_NewFileURI
(
nsio
,
aFile
,
_retval
);
}
static
nsresult
NSAPI
nsIOService_NewChannelFromURI2
(
nsIIOService
*
iface
,
nsIURI
*
aURI
,
nsIDOMNode
*
aLoadingNode
,
nsIPrincipal
*
aLoadingPrincipal
,
nsIPrincipal
*
aTriggeringPrincipal
,
UINT32
aSecurityFlags
,
UINT32
aContentPolicyType
,
nsIChannel
**
_retval
)
{
FIXME
(
"(%p %p %p %p %x %d %p)
\n
"
,
aURI
,
aLoadingNode
,
aLoadingPrincipal
,
aTriggeringPrincipal
,
aSecurityFlags
,
aContentPolicyType
,
_retval
);
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsIOService_NewChannelFromURI
(
nsIIOService
*
iface
,
nsIURI
*
aURI
,
nsIChannel
**
_retval
)
{
...
...
@@ -3562,6 +3616,16 @@ static nsresult NSAPI nsIOService_NewChannelFromURI(nsIIOService *iface, nsIURI
return
NS_OK
;
}
static
nsresult
NSAPI
nsIOService_NewChannel2
(
nsIIOService
*
iface
,
const
nsACString
*
aSpec
,
const
char
*
aOriginCharset
,
nsIURI
*
aBaseURI
,
nsIDOMNode
*
aLoadingNode
,
nsIPrincipal
*
aLoadingPrincipal
,
nsIPrincipal
*
aTriggeringPrincipal
,
UINT32
aSecurityFlags
,
UINT32
aContentPolicyType
,
nsIChannel
**
_retval
)
{
TRACE
(
"(%s %s %p %p %p %p %x %d %p)
\n
"
,
debugstr_nsacstr
(
aSpec
),
debugstr_a
(
aOriginCharset
),
aBaseURI
,
aLoadingNode
,
aLoadingPrincipal
,
aTriggeringPrincipal
,
aSecurityFlags
,
aContentPolicyType
,
_retval
);
return
nsIIOService_NewChannel2
(
nsio
,
aSpec
,
aOriginCharset
,
aBaseURI
,
aLoadingNode
,
aLoadingPrincipal
,
aTriggeringPrincipal
,
aSecurityFlags
,
aContentPolicyType
,
_retval
);
}
static
nsresult
NSAPI
nsIOService_NewChannel
(
nsIIOService
*
iface
,
const
nsACString
*
aSpec
,
const
char
*
aOriginCharset
,
nsIURI
*
aBaseURI
,
nsIChannel
**
_retval
)
{
...
...
@@ -3581,6 +3645,24 @@ static nsresult NSAPI nsIOService_SetOffline(nsIIOService *iface, cpp_bool aOffl
return
nsIIOService_SetOffline
(
nsio
,
aOffline
);
}
static
nsresult
NSAPI
nsIOService_SetAppOffline
(
nsIIOService
*
iface
,
UINT32
appId
,
INT32
state
)
{
TRACE
(
"(%d %x)
\n
"
,
appId
,
state
);
return
nsIIOService_SetAppOffline
(
nsio
,
appId
,
state
);
}
static
nsresult
NSAPI
nsIOService_IsAppOffline
(
nsIIOService
*
iface
,
UINT32
appId
,
cpp_bool
*
_retval
)
{
TRACE
(
"(%u %p)
\n
"
,
appId
,
_retval
);
return
nsIIOService_IsAppOffline
(
nsio
,
appId
,
_retval
);
}
static
nsresult
NSAPI
nsIOService_GetAppOfflineState
(
nsIIOService
*
iface
,
UINT32
appId
,
INT32
*
_retval
)
{
TRACE
(
"(%d %p)
\n
"
,
appId
,
_retval
);
return
nsIIOService_GetAppOfflineState
(
nsio
,
appId
,
_retval
);
}
static
nsresult
NSAPI
nsIOService_AllowPort
(
nsIIOService
*
iface
,
LONG
aPort
,
const
char
*
aScheme
,
cpp_bool
*
_retval
)
{
...
...
@@ -3603,10 +3685,15 @@ static const nsIIOServiceVtbl nsIOServiceVtbl = {
nsIOService_GetProtocolFlags
,
nsIOService_NewURI
,
nsIOService_NewFileURI
,
nsIOService_NewChannelFromURI2
,
nsIOService_NewChannelFromURI
,
nsIOService_NewChannel2
,
nsIOService_NewChannel
,
nsIOService_GetOffline
,
nsIOService_SetOffline
,
nsIOService_SetAppOffline
,
nsIOService_IsAppOffline
,
nsIOService_GetAppOfflineState
,
nsIOService_AllowPort
,
nsIOService_ExtractScheme
};
...
...
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