blob: 4dd4048a64c8d3124aab8f511312b0b987def25c [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// http://wicg.github.io/file-system-access/#enumdef-filesystempermissionmode
enum FileSystemPermissionMode {
"read",
"readwrite"
};
// http://wicg.github.io/file-system-access/#dictdef-filesystemhandlepermissiondescriptor
dictionary FileSystemHandlePermissionDescriptor {
FileSystemPermissionMode mode = "read";
};