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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DedicatedWorkerGlobalScopeFileSystem.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/DedicatedWorkerGlobalScopeFileSystem.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/DedicatedWorkerGlobalScopeFileSystem.idl b/third_party/WebKit/Source/modules/filesystem/DedicatedWorkerGlobalScopeFileSystem.idl
index d050cd6a2f97949c207036b6914df49ccfa52baa..1baba38a1d5edb3f47259e56465b2d053003dc28 100644
--- a/third_party/WebKit/Source/modules/filesystem/DedicatedWorkerGlobalScopeFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/DedicatedWorkerGlobalScopeFileSystem.idl
@@ -30,7 +30,7 @@ partial interface DedicatedWorkerGlobalScope {
const unsigned short PERSISTENT = 1;
[RuntimeEnabled=FileSystem, MeasureAs=RequestFileSystemWorker] void webkitRequestFileSystem(unsigned short type, long long size, optional FileSystemCallback successCallback, optional ErrorCallback errorCallback);
- [RuntimeEnabled=FileSystem, RaisesException, MeasureAs=RequestFileSystemSyncWorker] DOMFileSystemSync webkitRequestFileSystemSync(unsigned short type, long long size);
- [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url, EntryCallback successCallback, optional ErrorCallback errorCallback);
- [RuntimeEnabled=FileSystem, RaisesException] EntrySync webkitResolveLocalFileSystemSyncURL(DOMString url);
+ [RuntimeEnabled=FileSystem, RaisesException, MeasureAs=RequestFileSystemSyncWorker] FileSystemSync webkitRequestFileSystemSync(unsigned short type, long long size);
+ [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url, FileSystemEntryCallback successCallback, optional ErrorCallback errorCallback);
+ [RuntimeEnabled=FileSystem, RaisesException] FileSystemEntrySync webkitResolveLocalFileSystemSyncURL(DOMString url);
};

Powered by Google App Engine
This is Rietveld 408576698