| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 InspectorBackend.runAfterPendingDispatches = function(message) {} | 222 InspectorBackend.runAfterPendingDispatches = function(message) {} |
| 223 | 223 |
| 224 /** @interface */ | 224 /** @interface */ |
| 225 function InspectorFrontendHostAPI() {} | 225 function InspectorFrontendHostAPI() {} |
| 226 /** @param {!Function=} callback callback */ | 226 /** @param {!Function=} callback callback */ |
| 227 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {} | 227 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {} |
| 228 /** @param {!Function=} callback callback */ | 228 /** @param {!Function=} callback callback */ |
| 229 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {} | 229 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {} |
| 230 /** @param {!Function=} callback callback */ | 230 /** @param {!Function=} callback callback */ |
| 231 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat
h, callback) {} | 231 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat
h, callback) {} |
| 232 /** @param {!Function=} callback callback */ | 232 /** |
| 233 InspectorFrontendHostAPI.prototype.setWindowBounds = function(x, y, callback) {} | 233 * @param top |
| 234 * @param left |
| 235 * @param bottom |
| 236 * @param right |
| 237 */ |
| 238 InspectorFrontendHostAPI.prototype.setContentsInsets = function(top, left, botto
m, right) {} |
| 234 /** @param {!Function=} callback callback */ | 239 /** @param {!Function=} callback callback */ |
| 235 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {} | 240 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {} |
| 236 /** @param {!Function=} callback callback */ | 241 /** @param {!Function=} callback callback */ |
| 237 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {} | 242 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {} |
| 238 /** @param {!Function=} callback callback */ | 243 /** @param {!Function=} callback callback */ |
| 239 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c
allback) {} | 244 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c
allback) {} |
| 240 /** @param {!Function=} callback callback */ | 245 /** @param {!Function=} callback callback */ |
| 241 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {} | 246 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {} |
| 242 /** @param {!Function=} callback callback */ | 247 /** @param {!Function=} callback callback */ |
| 243 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca
llback) {} | 248 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca
llback) {} |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 | 588 |
| 584 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} | 589 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} |
| 585 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } | 590 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } |
| 586 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } | 591 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } |
| 587 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } | 592 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } |
| 588 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } | 593 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } |
| 589 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } | 594 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } |
| 590 | 595 |
| 591 /** @type {boolean} */ | 596 /** @type {boolean} */ |
| 592 window.dispatchStandaloneTestRunnerMessages; | 597 window.dispatchStandaloneTestRunnerMessages; |
| OLD | NEW |