Commit f0f70369 authored by Eero Häkkinen's avatar Eero Häkkinen Committed by Commit Bot

[FileSystem] Update Native File System spec URLs

Change-Id: Iba1582768904f9356d834ed3f642674a4cfcf468
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1546301
Auto-Submit: Eero Häkkinen <eero.hakkinen@intel.com>
Reviewed-by: default avatarTaiju Tsuiki <tzik@chromium.org>
Commit-Queue: Taiju Tsuiki <tzik@chromium.org>
Cr-Commit-Position: refs/heads/master@{#646673}
parent 3fb61ca4
......@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#enumdef-choosefilesystementriestype
// https://wicg.github.io/native-file-system/#enumdef-choosefilesystementriestype
enum ChooseFileSystemEntriesType { "openFile", "saveFile", "openDirectory" };
// https://wicg.github.io/writable-files/#dictdef-choosefilesystementriesoptions
// https://wicg.github.io/native-file-system/#dictdef-choosefilesystementriesoptions
dictionary ChooseFileSystemEntriesOptions {
ChooseFileSystemEntriesType type = "openFile";
boolean multiple = false;
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#filesystemhandle
// https://wicg.github.io/native-file-system/#filesystemhandle
[
RuntimeEnabled=WritableFiles,
NoInterfaceObject
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#filesystemdirectoryhandle
// https://wicg.github.io/native-file-system/#filesystemdirectoryhandle
[
RuntimeEnabled=WritableFiles
] interface FileSystemDirectoryHandle : FileSystemBaseHandle {
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#filesystemfilehandle
// https://wicg.github.io/native-file-system/#filesystemfilehandle
[
RuntimeEnabled=WritableFiles
] interface FileSystemFileHandle : FileSystemBaseHandle {
......
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#dictdef-filesystemgetdirectoryoptions
// https://wicg.github.io/native-file-system/#dictdef-filesystemgetdirectoryoptions
dictionary FileSystemGetDirectoryOptions {
boolean create = false;
};
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#dictdef-filesystemgetfileoptions
// https://wicg.github.io/native-file-system/#dictdef-filesystemgetfileoptions
dictionary FileSystemGetFileOptions {
boolean create = false;
};
......@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#filesystemwriter
// https://wicg.github.io/native-file-system/#filesystemwriter
[
NoInterfaceObject,
RuntimeEnabled=WritableFiles
......
......@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/writable-files/#enumdef-systemdirectorytype
// https://wicg.github.io/native-file-system/#enumdef-systemdirectorytype
enum SystemDirectoryType {
"sandbox"
};
// https://wicg.github.io/writable-files/#dictdef-getsystemdirectoryoptions
// https://wicg.github.io/native-file-system/#dictdef-getsystemdirectoryoptions
dictionary GetSystemDirectoryOptions {
required SystemDirectoryType type;
};
......@@ -38,7 +38,7 @@
[RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url,
EntryCallback successCallback, optional ErrorCallback? errorCallback);
// https://wicg.github.io/writable-files/#api-choosefilesystementries
// https://wicg.github.io/native-file-system/#api-choosefilesystementries
[RuntimeEnabled=WritableFiles, CallWith=ScriptState, SecureContext]
Promise<(FileSystemBaseHandle or sequence<FileSystemBaseHandle>)>
chooseFileSystemEntries(optional ChooseFileSystemEntriesOptions options);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment