| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 InspectorFrontendHostAPI.prototype.zoomOut = function() {} | 243 InspectorFrontendHostAPI.prototype.zoomOut = function() {} |
| 244 InspectorFrontendHostAPI.prototype.resetZoom = function() {} | 244 InspectorFrontendHostAPI.prototype.resetZoom = function() {} |
| 245 /** @type {InspectorFrontendHostAPI} */ | 245 /** @type {InspectorFrontendHostAPI} */ |
| 246 var InspectorFrontendHost; | 246 var InspectorFrontendHost; |
| 247 InspectorFrontendHost.embedderMessageAck = function(id, error) {} | 247 InspectorFrontendHost.embedderMessageAck = function(id, error) {} |
| 248 | 248 |
| 249 // FIXME: remove everything below. | 249 // FIXME: remove everything below. |
| 250 var FormatterWorker = {} | 250 var FormatterWorker = {} |
| 251 var WebInspector = {} | 251 var WebInspector = {} |
| 252 | 252 |
| 253 WebInspector.panels = {}; | |
| 254 WebInspector.devicesModel = {}; | 253 WebInspector.devicesModel = {}; |
| 255 | 254 |
| 256 WebInspector.reload = function() { } | 255 WebInspector.reload = function() { } |
| 257 | 256 |
| 258 /** Extensions API */ | 257 /** Extensions API */ |
| 259 | 258 |
| 260 /** @constructor */ | 259 /** @constructor */ |
| 261 function AuditCategory() {} | 260 function AuditCategory() {} |
| 262 /** @constructor */ | 261 /** @constructor */ |
| 263 function AuditResult() {} | 262 function AuditResult() {} |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 } | 461 } |
| 463 | 462 |
| 464 /** @type {Object.<string, !Object.<string, string>>} */ | 463 /** @type {Object.<string, !Object.<string, string>>} */ |
| 465 CodeMirror.keyMap; | 464 CodeMirror.keyMap; |
| 466 | 465 |
| 467 /** @type {{scrollLeft: number, scrollTop: number}} */ | 466 /** @type {{scrollLeft: number, scrollTop: number}} */ |
| 468 CodeMirror.doc; | 467 CodeMirror.doc; |
| 469 | 468 |
| 470 /** @type {boolean} */ | 469 /** @type {boolean} */ |
| 471 window.dispatchStandaloneTestRunnerMessages; | 470 window.dispatchStandaloneTestRunnerMessages; |
| OLD | NEW |