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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystemEntrySync.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/FileSystemEntrySync.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/EntrySync.idl b/third_party/WebKit/Source/modules/filesystem/FileSystemEntrySync.idl
similarity index 82%
rename from third_party/WebKit/Source/modules/filesystem/EntrySync.idl
rename to third_party/WebKit/Source/modules/filesystem/FileSystemEntrySync.idl
index ec38ea8f30e3992719343380f803debbfde1c0f3..f8a4d6beea12b1460a1b42e8eb1bbfbf3dd8fddc 100644
--- a/third_party/WebKit/Source/modules/filesystem/EntrySync.idl
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystemEntrySync.idl
@@ -30,17 +30,17 @@
[
NoInterfaceObject,
-] interface EntrySync {
+] interface FileSystemEntrySync {
readonly attribute boolean isFile;
readonly attribute boolean isDirectory;
readonly attribute DOMString name;
readonly attribute DOMString fullPath;
- readonly attribute DOMFileSystemSync filesystem;
+ readonly attribute FileSystemSync filesystem;
- [RaisesException] Metadata getMetadata();
- [RaisesException] EntrySync moveTo(DirectoryEntrySync parent, DOMString? name);
- [RaisesException] EntrySync copyTo(DirectoryEntrySync parent, DOMString? name);
+ [RaisesException] FileSystemMetadata getMetadata();
+ [RaisesException] FileSystemEntrySync moveTo(FileSystemDirectoryEntrySync parent, DOMString? name);
+ [RaisesException] FileSystemEntrySync copyTo(FileSystemDirectoryEntrySync parent, DOMString? name);
DOMString toURL();
[RaisesException] void remove();
- DirectoryEntrySync getParent();
+ FileSystemDirectoryEntrySync getParent();
};

Powered by Google App Engine
This is Rietveld 408576698