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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 /** 188 /**
189 * @constructor 189 * @constructor
190 */ 190 */
191 function DOMFileSystem() {} 191 function DOMFileSystem() {}
192 192
193 /** 193 /**
194 * @type {DirectoryEntry} 194 * @type {DirectoryEntry}
195 */ 195 */
196 DOMFileSystem.prototype.root = null; 196 DOMFileSystem.prototype.root = null;
197 197
198 // Drag and drop API
199 /**
200 * @constructor
201 */
202 function DataTransferItem() {}
203
204 /**
205 * @return {Entry}
206 */
207 DataTransferItem.prototype.webkitGetAsEntry = function() {}
208
198 /** @type {Node} */ 209 /** @type {Node} */
199 Range.prototype.startContainer; 210 Range.prototype.startContainer;
200 211
201 // Inspector Backend 212 // Inspector Backend
202 var InspectorBackend = {} 213 var InspectorBackend = {}
203 InspectorBackend.runAfterPendingDispatches = function(message) {} 214 InspectorBackend.runAfterPendingDispatches = function(message) {}
204 215
205 /** @interface */ 216 /** @interface */
206 function InspectorFrontendHostAPI() {} 217 function InspectorFrontendHostAPI() {}
207 /** @param {Function=} callback callback */ 218 /** @param {Function=} callback callback */
(...skipping 18 matching lines...) Expand all
226 InspectorFrontendHostAPI.prototype.searchInPath = function(requestId, fileSystem Path, query, callback) {} 237 InspectorFrontendHostAPI.prototype.searchInPath = function(requestId, fileSystem Path, query, callback) {}
227 /** @param {Function=} callback callback */ 238 /** @param {Function=} callback callback */
228 InspectorFrontendHostAPI.prototype.stopIndexing = function(requestId, callback) {} 239 InspectorFrontendHostAPI.prototype.stopIndexing = function(requestId, callback) {}
229 240
230 InspectorFrontendHostAPI.prototype.bringToFront = function() {} 241 InspectorFrontendHostAPI.prototype.bringToFront = function() {}
231 InspectorFrontendHostAPI.prototype.close = function(url) {} 242 InspectorFrontendHostAPI.prototype.close = function(url) {}
232 InspectorFrontendHostAPI.prototype.closeWindow = function() {} 243 InspectorFrontendHostAPI.prototype.closeWindow = function() {}
233 InspectorFrontendHostAPI.prototype.copyText = function(text) {} 244 InspectorFrontendHostAPI.prototype.copyText = function(text) {}
234 InspectorFrontendHostAPI.prototype.inspectedURLChanged = function(url) {} 245 InspectorFrontendHostAPI.prototype.inspectedURLChanged = function(url) {}
235 InspectorFrontendHostAPI.prototype.isolatedFileSystem = function(fileSystemId, r egisteredName) {} 246 InspectorFrontendHostAPI.prototype.isolatedFileSystem = function(fileSystemId, r egisteredName) {}
247 InspectorFrontendHostAPI.prototype.upgradeDraggedFileSystemPermissions = functio n(DOMFileSystem) {}
236 InspectorFrontendHostAPI.prototype.loaded = function() {} 248 InspectorFrontendHostAPI.prototype.loaded = function() {}
237 InspectorFrontendHostAPI.prototype.localizedStringsURL = function() {} 249 InspectorFrontendHostAPI.prototype.localizedStringsURL = function() {}
238 InspectorFrontendHostAPI.prototype.platform = function() {} 250 InspectorFrontendHostAPI.prototype.platform = function() {}
239 InspectorFrontendHostAPI.prototype.port = function() {} 251 InspectorFrontendHostAPI.prototype.port = function() {}
240 InspectorFrontendHostAPI.prototype.recordActionTaken = function(actionCode) {} 252 InspectorFrontendHostAPI.prototype.recordActionTaken = function(actionCode) {}
241 InspectorFrontendHostAPI.prototype.recordPanelShown = function(panelCode) {} 253 InspectorFrontendHostAPI.prototype.recordPanelShown = function(panelCode) {}
242 InspectorFrontendHostAPI.prototype.recordSettingChanged = function(settingCode) {} 254 InspectorFrontendHostAPI.prototype.recordSettingChanged = function(settingCode) {}
243 InspectorFrontendHostAPI.prototype.requestSetDockSide = function(dockSide) {} 255 InspectorFrontendHostAPI.prototype.requestSetDockSide = function(dockSide) {}
244 InspectorFrontendHostAPI.prototype.sendMessageToBackend = function(message) {} 256 InspectorFrontendHostAPI.prototype.sendMessageToBackend = function(message) {}
245 InspectorFrontendHostAPI.prototype.sendMessageToEmbedder = function(message) {} 257 InspectorFrontendHostAPI.prototype.sendMessageToEmbedder = function(message) {}
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 564
553 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 565 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
554 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 566 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
555 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 567 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
556 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 568 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
557 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 569 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
558 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 570 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
559 571
560 /** @type {boolean} */ 572 /** @type {boolean} */
561 window.dispatchStandaloneTestRunnerMessages; 573 window.dispatchStandaloneTestRunnerMessages;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698