Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystem.idl

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/filesystem/FileSystem.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.idl b/third_party/WebKit/Source/modules/filesystem/FileSystem.idl
similarity index 92%
rename from third_party/WebKit/Source/modules/filesystem/DOMFileSystem.idl
rename to third_party/WebKit/Source/modules/filesystem/FileSystem.idl
index 5abd5475d555f098c3f52d8512667cdd509cf62b..8cd9a95b0365a152ec360ebd761e9fee6e931bf8 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystem.idl
@@ -29,11 +29,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://wicg.github.io/entries-api/#api-domfilesystem
[
ActiveScriptWrappable,
DependentLifetime,
- NoInterfaceObject,
-] interface DOMFileSystem {
+] interface FileSystem {
readonly attribute DOMString name;
- readonly attribute DirectoryEntry root;
+ readonly attribute FileSystemDirectoryEntry root;
};

Powered by Google App Engine
This is Rietveld 408576698