chromium/third_party/blink/public/mojom/permissions_policy/policy_disposition.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;

// This enum is used to distinguish between report-only directives and enforcing
// directives.
enum PolicyDisposition {
  kEnforce,
  kReport,
};