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

Unified Diff: third_party/WebKit/Source/modules/filesystem/SharedWorkerGlobalScopeFileSystem.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/SharedWorkerGlobalScopeFileSystem.idl
diff --git a/third_party/WebKit/Source/modules/filesystem/SharedWorkerGlobalScopeFileSystem.idl b/third_party/WebKit/Source/modules/filesystem/SharedWorkerGlobalScopeFileSystem.idl
index b01deac2762621897c03d7ff209be79a8b2ea436..08dc5f638250704a357e61e39c5524f62ce3f9f2 100644
--- a/third_party/WebKit/Source/modules/filesystem/SharedWorkerGlobalScopeFileSystem.idl
+++ b/third_party/WebKit/Source/modules/filesystem/SharedWorkerGlobalScopeFileSystem.idl
@@ -30,7 +30,7 @@ partial interface SharedWorkerGlobalScope {
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