mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +09:00
Issue #1498 - Part 3: Remove support for storing "knockout" values.
This commit is contained in:
parent
6b2664c8c5
commit
bcfc5b3a88
2 changed files with 4 additions and 10 deletions
|
|
@ -106,13 +106,10 @@ interface nsISiteSecurityService : nsISupports
|
|||
* @param aURI the URI of the target host
|
||||
* @param aFlags options for this request as defined in nsISocketProvider:
|
||||
* NO_PERMANENT_STORAGE
|
||||
* @param force if set, forces no-HSTS state by writing a knockout value,
|
||||
* overriding any preload list state
|
||||
*/
|
||||
void removeState(in uint32_t aType,
|
||||
in nsIURI aURI,
|
||||
in uint32_t aFlags,
|
||||
[optional] in boolean force);
|
||||
in uint32_t aFlags);
|
||||
|
||||
/**
|
||||
* See isSecureURI
|
||||
|
|
|
|||
|
|
@ -326,11 +326,9 @@ nsSiteSecurityService::SetHSTSState(uint32_t aType,
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
// If max-age is zero, the host is no longer considered HSTS. If the host was
|
||||
// preloaded, we store an entry indicating that this host is not HSTS, causing
|
||||
// the preloaded information to be ignored.
|
||||
// If max-age is zero, the host is no longer considered HSTS.
|
||||
if (maxage == 0) {
|
||||
return RemoveState(aType, aSourceURI, flags, true);
|
||||
return RemoveState(aType, aSourceURI, flags);
|
||||
}
|
||||
|
||||
MOZ_ASSERT((aHSTSState == SecurityPropertySet ||
|
||||
|
|
@ -358,8 +356,7 @@ nsSiteSecurityService::SetHSTSState(uint32_t aType,
|
|||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsSiteSecurityService::RemoveState(uint32_t aType, nsIURI* aURI,
|
||||
uint32_t aFlags, bool force = false)
|
||||
nsSiteSecurityService::RemoveState(uint32_t aType, nsIURI* aURI, uint32_t aFlags)
|
||||
{
|
||||
// Child processes are not allowed direct access to this.
|
||||
if (!XRE_IsParentProcess()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue