Bug 1517360 - Port bug 1517057, Part 1: Remove use of URI_FORBIDS_COOKIE_ACCESS. r=darktrojan DONTBUILD
This commit is contained in:
Родитель
1e842d495d
Коммит
a900d79547
|
@ -50,7 +50,7 @@ NS_IMETHODIMP nsAddbookProtocolHandler::GetDefaultPort(int32_t *aDefaultPort)
|
|||
|
||||
NS_IMETHODIMP nsAddbookProtocolHandler::GetProtocolFlags(uint32_t *aUritype)
|
||||
{
|
||||
*aUritype = URI_STD | URI_LOADABLE_BY_ANYONE | URI_FORBIDS_COOKIE_ACCESS;
|
||||
*aUritype = URI_STD | URI_LOADABLE_BY_ANYONE;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -284,8 +284,7 @@ nsSmtpService::AllowPort(int32_t port, const char *scheme, bool *_retval)
|
|||
NS_IMETHODIMP nsSmtpService::GetProtocolFlags(uint32_t *result)
|
||||
{
|
||||
*result = URI_NORELATIVE | ALLOWS_PROXY | URI_LOADABLE_BY_ANYONE |
|
||||
URI_NON_PERSISTABLE | URI_DOES_NOT_RETURN_DATA |
|
||||
URI_FORBIDS_COOKIE_ACCESS;
|
||||
URI_NON_PERSISTABLE | URI_DOES_NOT_RETURN_DATA;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -2451,7 +2451,7 @@ NS_IMETHODIMP nsImapService::GetDefaultPort(int32_t *aDefaultPort)
|
|||
NS_IMETHODIMP nsImapService::GetProtocolFlags(uint32_t *result)
|
||||
{
|
||||
*result = URI_NORELATIVE | URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
URI_DANGEROUS_TO_LOAD | ALLOWS_PROXY | URI_FORBIDS_COOKIE_ACCESS
|
||||
URI_DANGEROUS_TO_LOAD | ALLOWS_PROXY
|
||||
#ifdef IS_ORIGIN_IS_FULL_SPEC_DEFINED
|
||||
| ORIGIN_IS_FULL_SPEC
|
||||
#endif
|
||||
|
|
|
@ -8,7 +8,6 @@ var defaultProtocolFlags =
|
|||
Ci.nsIProtocolHandler.URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
Ci.nsIProtocolHandler.URI_DANGEROUS_TO_LOAD |
|
||||
Ci.nsIProtocolHandler.ALLOWS_PROXY |
|
||||
Ci.nsIProtocolHandler.URI_FORBIDS_COOKIE_ACCESS |
|
||||
Ci.nsIProtocolHandler.ORIGIN_IS_FULL_SPEC;
|
||||
|
||||
var protocols =
|
||||
|
|
|
@ -539,7 +539,7 @@ NS_IMETHODIMP nsMailboxService::GetProtocolFlags(uint32_t *result)
|
|||
{
|
||||
NS_ENSURE_ARG_POINTER(result);
|
||||
*result = URI_NORELATIVE | URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
URI_DANGEROUS_TO_LOAD | URI_FORBIDS_COOKIE_ACCESS
|
||||
URI_DANGEROUS_TO_LOAD
|
||||
#ifdef IS_ORIGIN_IS_FULL_SPEC_DEFINED
|
||||
| ORIGIN_IS_FULL_SPEC
|
||||
#endif
|
||||
|
|
|
@ -304,8 +304,7 @@ NS_IMETHODIMP nsPop3Service::GetDefaultDoBiff(bool *aDoBiff)
|
|||
NS_IMETHODIMP nsPop3Service::GetProtocolFlags(uint32_t *result)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(result);
|
||||
*result = URI_NORELATIVE | URI_DANGEROUS_TO_LOAD | ALLOWS_PROXY |
|
||||
URI_FORBIDS_COOKIE_ACCESS;
|
||||
*result = URI_NORELATIVE | URI_DANGEROUS_TO_LOAD | ALLOWS_PROXY;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ var defaultProtocolFlags =
|
|||
Ci.nsIProtocolHandler.URI_NORELATIVE |
|
||||
Ci.nsIProtocolHandler.URI_DANGEROUS_TO_LOAD |
|
||||
Ci.nsIProtocolHandler.URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
Ci.nsIProtocolHandler.URI_FORBIDS_COOKIE_ACCESS |
|
||||
Ci.nsIProtocolHandler.ORIGIN_IS_FULL_SPEC;
|
||||
|
||||
var protocols = [{
|
||||
|
|
|
@ -1190,7 +1190,7 @@ NS_IMETHODIMP nsNntpService::GetProtocolFlags(uint32_t *aUritype)
|
|||
{
|
||||
NS_ENSURE_ARG_POINTER(aUritype);
|
||||
*aUritype = URI_NORELATIVE | URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
URI_LOADABLE_BY_ANYONE | ALLOWS_PROXY | URI_FORBIDS_COOKIE_ACCESS
|
||||
URI_LOADABLE_BY_ANYONE | ALLOWS_PROXY
|
||||
#ifdef IS_ORIGIN_IS_FULL_SPEC_DEFINED
|
||||
| ORIGIN_IS_FULL_SPEC
|
||||
#endif
|
||||
|
|
|
@ -8,7 +8,6 @@ var defaultProtocolFlags =
|
|||
Ci.nsIProtocolHandler.URI_LOADABLE_BY_ANYONE |
|
||||
Ci.nsIProtocolHandler.ALLOWS_PROXY |
|
||||
Ci.nsIProtocolHandler.URI_FORBIDS_AUTOMATIC_DOCUMENT_REPLACEMENT |
|
||||
Ci.nsIProtocolHandler.URI_FORBIDS_COOKIE_ACCESS |
|
||||
Ci.nsIProtocolHandler.ORIGIN_IS_FULL_SPEC;
|
||||
|
||||
var protocols = [{
|
||||
|
|
Загрузка…
Ссылка в новой задаче