chromium/third_party/blink/public/mojom/frame/blocked_navigation_types.mojom

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module blink.mojom;

// The reason the navigation was blocked.
enum NavigationBlockedReason {
  // Frame attempted to navigate the top window without user activation.
  kRedirectWithNoUserGesture,
  // Frame attempted to navigate the top window without user activation and is
  // sandboxed.
  kRedirectWithNoUserGestureSandbox
};