| Index: third_party/WebKit/Source/core/dom/SandboxFlags.h
|
| diff --git a/third_party/WebKit/Source/core/dom/SandboxFlags.h b/third_party/WebKit/Source/core/dom/SandboxFlags.h
|
| index cb4c968de9538fdf59c6cdfa3b4ae52e3939e857..c5ba93b8ddfd350baf98e9ff8aa9841ae294ffa6 100644
|
| --- a/third_party/WebKit/Source/core/dom/SandboxFlags.h
|
| +++ b/third_party/WebKit/Source/core/dom/SandboxFlags.h
|
| @@ -33,7 +33,8 @@
|
| namespace blink {
|
|
|
| enum SandboxFlag {
|
| - // See http://www.whatwg.org/specs/web-apps/current-work/#attr-iframe-sandbox for a list of the sandbox flags.
|
| + // See http://www.whatwg.org/specs/web-apps/current-work/#attr-iframe-sandbox
|
| + // for a list of the sandbox flags.
|
| SandboxNone = 0,
|
| SandboxNavigation = 1,
|
| SandboxPlugins = 1 << 1,
|
| @@ -41,19 +42,19 @@ enum SandboxFlag {
|
| SandboxForms = 1 << 3,
|
| SandboxScripts = 1 << 4,
|
| SandboxTopNavigation = 1 << 5,
|
| - SandboxPopups =
|
| - 1 << 6, // See https://www.w3.org/Bugs/Public/show_bug.cgi?id=12393
|
| + // See https://www.w3.org/Bugs/Public/show_bug.cgi?id=12393
|
| + SandboxPopups = 1 << 6,
|
| SandboxAutomaticFeatures = 1 << 7,
|
| SandboxPointerLock = 1 << 8,
|
| SandboxDocumentDomain = 1 << 9,
|
| - SandboxOrientationLock =
|
| - 1
|
| - << 10, // See https://w3c.github.io/screen-orientation/#dfn-sandboxed-orientation-lock-browsing-context-flag.
|
| + // See
|
| + // https://w3c.github.io/screen-orientation/#dfn-sandboxed-orientation-lock-browsing-context-flag.
|
| + SandboxOrientationLock = 1 << 10,
|
| SandboxPropagatesToAuxiliaryBrowsingContexts = 1 << 11,
|
| SandboxModals = 1 << 12,
|
| - SandboxPresentation =
|
| - 1
|
| - << 13, // See https://w3c.github.io/presentation-api/#sandboxing-and-the-allow-presentation-keyword
|
| + // See
|
| + // https://w3c.github.io/presentation-api/#sandboxing-and-the-allow-presentation-keyword
|
| + SandboxPresentation = 1 << 13,
|
| SandboxAll = -1 // Mask with all bits set to 1.
|
| };
|
|
|
|
|