chromium/third_party/blink/renderer/modules/permissions/clipboard_permission_descriptor.idl

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

dictionary ClipboardPermissionDescriptor : PermissionDescriptor {
    boolean allowWithoutGesture = false;
    // TODO(https://crbug.com/1026088): Update Clipboard Specification to
    // include allowWithoutSanitization in the PermissionDescriptor.
    boolean allowWithoutSanitization = false;
};