Index: tools/dom/templates/html/impl/impl_WorkerContext.darttemplate |
diff --git a/tools/dom/templates/html/impl/impl_WorkerContext.darttemplate b/tools/dom/templates/html/impl/impl_WorkerContext.darttemplate |
index 92152726d366c8a2df1458e70b6ccaa1ebc3e021..ecefab23a5b0dd851af9014906fbaa0d0f4bbd2d 100644 |
--- a/tools/dom/templates/html/impl/impl_WorkerContext.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_WorkerContext.darttemplate |
@@ -22,36 +22,5 @@ $if DART2JS |
this, this, this); |
$endif |
- /** |
- * Access a sandboxed file system of the specified `size`. If `persistent` is |
- * true, the application will request permission from the user to create |
- * lasting storage. This storage cannot be freed without the user's |
- * permission. Returns a [Future] whose value stores a reference to the |
- * sandboxed file system for use. Because the file system is sandboxed, |
- * applications cannot access file systems created in other web pages. |
- */ |
- @DomName('WorkerContext.webkitRequestFileSystem') |
- @DocsEditable |
- @SupportedBrowser(SupportedBrowser.CHROME) |
- @Experimental |
- Future<FileSystem> requestFileSystem(int size, {bool persistent: false}) { |
Emily Fortuna
2013/04/05 22:03:41
why not leave these nicer APIs in here if we're st
blois
2013/04/05 22:14:48
WorkerContext becomes a 'deleted class', so all me
|
- return _requestFileSystem(persistent? 1 : 0, size); |
- } |
- |
- /** |
- * Access a sandboxed file system of the specified `size`. If `persistent` is |
- * true, the application will request permission from the user to create |
- * lasting storage. This storage cannot be freed without the user's |
- * permission. This call will block until a reference to the synchronous file |
- * system API has been obtained. Because the file system is sandboxed, |
- * applications cannot access file systems created in other web pages. |
- */ |
- @DomName('WorkerContext.webkitRequestFileSystemSync') |
- @DocsEditable |
- @SupportedBrowser(SupportedBrowser.CHROME) |
- @Experimental |
- FileSystemSync requestFileSystemSync(int size, {bool persistent: false}) { |
- return _requestFileSystemSync(persistent? 1 : 0, size); |
- } |
$!MEMBERS |
} |