summaryrefslogtreecommitdiff
path: root/chromium/content/common/frame.mojom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/common/frame.mojom')
-rw-r--r--chromium/content/common/frame.mojom6
1 files changed, 4 insertions, 2 deletions
diff --git a/chromium/content/common/frame.mojom b/chromium/content/common/frame.mojom
index b2f13658455..87276f2295e 100644
--- a/chromium/content/common/frame.mojom
+++ b/chromium/content/common/frame.mojom
@@ -532,8 +532,10 @@ struct CreateNewWindowParams {
// Operation result when the renderer asks the browser to create a new window.
enum CreateNewWindowStatus {
- // Ignore creation of the new window. This can happen because creation is
- // blocked or because the new window should have no opener relationship.
+ // Creation of the new window was blocked, e.g. because the source frame
+ // doesn't have user activation.
+ kBlocked,
+ // Ignore creation of the new window, e.g. because noopener is in effect.
kIgnore,
// Reuse the current window rather than creating a new window.
kReuse,