Backed out changeset 24a113011b90 (bug 1162772)

This commit is contained in:
Sebastian Hengst 2016-04-30 09:54:08 +02:00
Родитель bec59714da
Коммит 400524aba3
2 изменённых файлов: 1 добавлений и 14 удалений

Просмотреть файл

@ -88,7 +88,6 @@ LoadInfo::LoadInfo(nsIPrincipal* aLoadingPrincipal,
// if the load is sandboxed, we can not also inherit the principal
if (mSecurityFlags & nsILoadInfo::SEC_SANDBOXED) {
mSecurityFlags ^= nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL;
mSecurityFlags |= nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL_WAS_DROPPED;
}
if (aLoadingContext) {
@ -195,7 +194,6 @@ LoadInfo::LoadInfo(nsPIDOMWindowOuter* aOuterWindow,
// if the load is sandboxed, we can not also inherit the principal
if (mSecurityFlags & nsILoadInfo::SEC_SANDBOXED) {
mSecurityFlags ^= nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL;
mSecurityFlags |= nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL_WAS_DROPPED;
}
// NB: Ignore the current inner window since we're navigating away from it.

Просмотреть файл

@ -118,10 +118,7 @@ interface nsILoadInfo : nsISupports
* is loading the URI "http://b.com/whatever", GetChannelResultPrincipal
* will return a principal from "http://a.com/".
*
* This flag can not be used together with SEC_SANDBOXED. If both are passed
* to the LoadInfo constructor then this flag will be dropped. If you need
* to know whether this flag would have been present but was dropped due to
* sandboxing, check for the SEC_FORCE_INHERIT_PRINCIPAL_WAS_DROPPED flag.
* This flag can not be used together with SEC_SANDBOXED.
*/
const unsigned long SEC_FORCE_INHERIT_PRINCIPAL = (1<<7);
@ -169,14 +166,6 @@ interface nsILoadInfo : nsISupports
*/
const unsigned long SEC_FORCE_PRIVATE_BROWSING = (1<<12);
/**
* The SEC_FORCE_INHERIT_PRINCIPAL flag may be dropped when a load info
* object is created. Specifically, it will be dropped if the SEC_SANDBOXED
* flag is also present. This flag is set if SEC_FORCE_INHERIT_PRINCIPAL was
* dropped.
*/
const unsigned long SEC_FORCE_INHERIT_PRINCIPAL_WAS_DROPPED = (1<<13);
/**
* The loadingPrincipal is the principal that is responsible for the load.
* It is *NOT* the principal tied to the resource/URI that this