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

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

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/RangeTest.cpp ('k') | third_party/WebKit/Source/core/dom/ScriptLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
};
« no previous file with comments | « third_party/WebKit/Source/core/dom/RangeTest.cpp ('k') | third_party/WebKit/Source/core/dom/ScriptLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698