Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(912)

Unified Diff: Source/core/dom/SandboxFlags.h

Issue 1139933002: Prototype an 'allow-unsandboxed-auxiliary' sandbox flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/SandboxFlags.h
diff --git a/Source/core/dom/SandboxFlags.h b/Source/core/dom/SandboxFlags.h
index 2b386186ad29030cb4b045aa55d9be8809f13047..6a24d3afc454586744061b02ae85879f0e3b8f60 100644
--- a/Source/core/dom/SandboxFlags.h
+++ b/Source/core/dom/SandboxFlags.h
@@ -46,6 +46,7 @@ enum SandboxFlag {
SandboxPointerLock = 1 << 8,
SandboxDocumentDomain = 1 << 9,
SandboxOrientationLock = 1 << 10, // See https://w3c.github.io/screen-orientation/#dfn-sandboxed-orientation-lock-browsing-context-flag.
+ SandboxUnsandboxedAuxiliary = 1 << 11,
SandboxAll = -1 // Mask with all bits set to 1.
};

Powered by Google App Engine
This is Rietveld 408576698