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

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

Issue 57373002: DevTools: Add support for adding folders to workspace with drag and drop (renderer part) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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: Source/devtools/front_end/externs.js
diff --git a/Source/devtools/front_end/externs.js b/Source/devtools/front_end/externs.js
index 66c17e08dcd81d7f3fd30280a5ea64d7601a3ef4..c45204d30c181d251726a1fe61a30e73af48592b 100644
--- a/Source/devtools/front_end/externs.js
+++ b/Source/devtools/front_end/externs.js
@@ -195,6 +195,17 @@ function DOMFileSystem() {}
*/
DOMFileSystem.prototype.root = null;
+// Drag and drop API
+/**
+ * @constructor
+ */
+function DataTransferItem() {}
+
+/**
+ * @return {Entry}
+ */
+DataTransferItem.prototype.webkitGetAsEntry = function() {}
+
/** @type {Node} */
Range.prototype.startContainer;
@@ -233,6 +244,7 @@ InspectorFrontendHostAPI.prototype.closeWindow = function() {}
InspectorFrontendHostAPI.prototype.copyText = function(text) {}
InspectorFrontendHostAPI.prototype.inspectedURLChanged = function(url) {}
InspectorFrontendHostAPI.prototype.isolatedFileSystem = function(fileSystemId, registeredName) {}
+InspectorFrontendHostAPI.prototype.upgradeDraggedFileSystemPermissions = function(DOMFileSystem) {}
InspectorFrontendHostAPI.prototype.loaded = function() {}
InspectorFrontendHostAPI.prototype.localizedStringsURL = function() {}
InspectorFrontendHostAPI.prototype.platform = function() {}

Powered by Google App Engine
This is Rietveld 408576698