diff options
Diffstat (limited to 'WebCore/page/SecurityOrigin.h')
-rw-r--r-- | WebCore/page/SecurityOrigin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/WebCore/page/SecurityOrigin.h b/WebCore/page/SecurityOrigin.h index 1f2624e..96f85df 100644 --- a/WebCore/page/SecurityOrigin.h +++ b/WebCore/page/SecurityOrigin.h @@ -90,6 +90,11 @@ namespace WebCore { // with older versions of WebKit. void grantLoadLocalResources(); + // Explicitly grant the ability to access very other SecurityOrigin. + // + // WARNING: This is an extremely powerful ability. Use with caution! + void grantUniversalAccess(); + bool isSecureTransitionTo(const KURL&) const; // The local SecurityOrigin is the most privileged SecurityOrigin. @@ -132,6 +137,7 @@ namespace WebCore { String m_domain; unsigned short m_port; bool m_noAccess; + bool m_universalAccess; bool m_domainWasSetInDOM; bool m_canLoadLocalResources; }; |