| OLD | NEW |
| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 * @param {string} registeredName | 265 * @param {string} registeredName |
| 266 * @return {?DOMFileSystem} | 266 * @return {?DOMFileSystem} |
| 267 */ | 267 */ |
| 268 DevToolsHost.isolatedFileSystem = function(fileSystemId, registeredName) {}; | 268 DevToolsHost.isolatedFileSystem = function(fileSystemId, registeredName) {}; |
| 269 | 269 |
| 270 /** | 270 /** |
| 271 * @param {!FileSystem} fileSystem | 271 * @param {!FileSystem} fileSystem |
| 272 */ | 272 */ |
| 273 DevToolsHost.upgradeDraggedFileSystemPermissions = function(fileSystem) {}; | 273 DevToolsHost.upgradeDraggedFileSystemPermissions = function(fileSystem) {}; |
| 274 | 274 |
| 275 var WebInspector = function() {}; | |
| 276 | |
| 277 /** Extensions API */ | 275 /** Extensions API */ |
| 278 | 276 |
| 279 /** @constructor */ | 277 /** @constructor */ |
| 280 function AuditCategory() { | 278 function AuditCategory() { |
| 281 } | 279 } |
| 282 /** @constructor */ | 280 /** @constructor */ |
| 283 function AuditResult() { | 281 function AuditResult() { |
| 284 } | 282 } |
| 285 /** @constructor */ | 283 /** @constructor */ |
| 286 function EventSink() { | 284 function EventSink() { |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 var Terminal = function(params) {}; | 796 var Terminal = function(params) {}; |
| 799 | 797 |
| 800 Terminal.prototype = { | 798 Terminal.prototype = { |
| 801 fit: function() {}, | 799 fit: function() {}, |
| 802 linkify: function() {}, | 800 linkify: function() {}, |
| 803 /** @param {!Element} element */ | 801 /** @param {!Element} element */ |
| 804 open: function(element) {}, | 802 open: function(element) {}, |
| 805 /** @param {string} eventName * @param {!Function} handler */ | 803 /** @param {string} eventName * @param {!Function} handler */ |
| 806 on: function(eventName, handler) {} | 804 on: function(eventName, handler) {} |
| 807 }; | 805 }; |
| 806 |
| 807 // Module namespaces. |
| 808 var Accessibility = {}; |
| 809 var Animation = {}; |
| 810 var Audits = {}; |
| 811 var Audits2 = {}; |
| 812 var Audits2Worker = {}; |
| 813 var Bindings = {}; |
| 814 var CmModes = {}; |
| 815 var Common = {}; |
| 816 var Components = {}; |
| 817 var Console = {}; |
| 818 var Devices = {}; |
| 819 var Diff = {}; |
| 820 var Elements = {}; |
| 821 var Emulation = {}; |
| 822 var Extensions = {}; |
| 823 var FormatterWorker = {}; |
| 824 var Gonzales = {}; |
| 825 var HeapSnapshotWorker = {}; |
| 826 var Host = {}; |
| 827 var LayerViewer = {}; |
| 828 var Layers = {}; |
| 829 var Main = {}; |
| 830 var Network = {}; |
| 831 var Persistence = {}; |
| 832 var Platform = {}; |
| 833 var Profiler = {}; |
| 834 var Resources = {}; |
| 835 var Sass = {}; |
| 836 var Screencast = {}; |
| 837 var SDK = {}; |
| 838 var Security = {}; |
| 839 var Services = {}; |
| 840 var Settings = {}; |
| 841 var Snippets = {}; |
| 842 var SourceFrame = {}; |
| 843 var Sources = {}; |
| 844 var Terminal = {}; |
| 845 var TextEditor = {}; |
| 846 var Timeline = {}; |
| 847 var TimelineModel = {}; |
| 848 var ToolboxBootstrap = {}; |
| 849 var UI = {}; |
| 850 var UtilitySharedWorker = {}; |
| 851 var WorkerService = {}; |
| 852 var Workspace = {}; |
| OLD | NEW |