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

Unified Diff: third_party/WebKit/Source/devtools/front_end/externs.js

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/devtools/front_end/externs.js
diff --git a/third_party/WebKit/Source/devtools/front_end/externs.js b/third_party/WebKit/Source/devtools/front_end/externs.js
index ce5dd2e324a988bb66deaa3d99f8dc20024f02f3..7bf37c92afac82043a569bbb31488681537195bf 100644
--- a/third_party/WebKit/Source/devtools/front_end/externs.js
+++ b/third_party/WebKit/Source/devtools/front_end/externs.js
@@ -186,13 +186,12 @@ Array.prototype.mergeOrdered = function(array, comparator) {};
/**
* @constructor
*/
-function DOMFileSystem() {
-}
+function FileSystem() {}
/**
- * @type {DirectoryEntry}
+ * @type {FileSystemDirectoryEntry}
*/
-DOMFileSystem.prototype.root = null;
+FileSystem.prototype.root = null;
/**
* @type {*}
@@ -263,7 +262,7 @@ DevToolsHost.isHostedMode = function() {};
/**
* @param {string} fileSystemId
* @param {string} registeredName
- * @return {?DOMFileSystem}
+ * @return {?FileSystem}
*/
DevToolsHost.isolatedFileSystem = function(fileSystemId, registeredName) {};

Powered by Google App Engine
This is Rietveld 408576698