1// Copyright 2020 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5module blink.mojom;
6
7// This enum is used to distinguish between report-only directives and enforcing
8// directives.
9enum PolicyDisposition {
10  kEnforce,
11  kReport,
12};
13