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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 InspectorFrontendHostAPI.prototype.localizedStringsURL = function() {} | 215 InspectorFrontendHostAPI.prototype.localizedStringsURL = function() {} |
216 InspectorFrontendHostAPI.prototype.inspectedURLChanged = function(url) {} | 216 InspectorFrontendHostAPI.prototype.inspectedURLChanged = function(url) {} |
217 InspectorFrontendHostAPI.prototype.documentCopy = function(event) {} | 217 InspectorFrontendHostAPI.prototype.documentCopy = function(event) {} |
218 InspectorFrontendHostAPI.prototype.copyText = function(text) {} | 218 InspectorFrontendHostAPI.prototype.copyText = function(text) {} |
219 InspectorFrontendHostAPI.prototype.openInNewTab = function(url) {} | 219 InspectorFrontendHostAPI.prototype.openInNewTab = function(url) {} |
220 InspectorFrontendHostAPI.prototype.canSave = function() {} | 220 InspectorFrontendHostAPI.prototype.canSave = function() {} |
221 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs) {} | 221 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs) {} |
222 InspectorFrontendHostAPI.prototype.close = function(url) {} | 222 InspectorFrontendHostAPI.prototype.close = function(url) {} |
223 InspectorFrontendHostAPI.prototype.append = function(url, content) {} | 223 InspectorFrontendHostAPI.prototype.append = function(url, content) {} |
224 InspectorFrontendHostAPI.prototype.sendMessageToBackend = function(message) {} | 224 InspectorFrontendHostAPI.prototype.sendMessageToBackend = function(message) {} |
| 225 InspectorFrontendHostAPI.prototype.sendMessageToEmbedder = function(message) {} |
225 InspectorFrontendHostAPI.prototype.recordActionTaken = function(actionCode) {} | 226 InspectorFrontendHostAPI.prototype.recordActionTaken = function(actionCode) {} |
226 InspectorFrontendHostAPI.prototype.recordPanelShown = function(panelCode) {} | 227 InspectorFrontendHostAPI.prototype.recordPanelShown = function(panelCode) {} |
227 InspectorFrontendHostAPI.prototype.recordSettingChanged = function(settingCode)
{} | 228 InspectorFrontendHostAPI.prototype.recordSettingChanged = function(settingCode)
{} |
228 InspectorFrontendHostAPI.prototype.loadResourceSynchronously = function(url) {} | 229 InspectorFrontendHostAPI.prototype.loadResourceSynchronously = function(url) {} |
229 InspectorFrontendHostAPI.prototype.supportsFileSystems = function() {} | 230 InspectorFrontendHostAPI.prototype.supportsFileSystems = function() {} |
230 InspectorFrontendHostAPI.prototype.requestFileSystems = function() {} | 231 InspectorFrontendHostAPI.prototype.requestFileSystems = function() {} |
231 InspectorFrontendHostAPI.prototype.addFileSystem = function() {} | 232 InspectorFrontendHostAPI.prototype.addFileSystem = function() {} |
232 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath) {
} | 233 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath) {
} |
233 InspectorFrontendHostAPI.prototype.isolatedFileSystem = function(fileSystemId, r
egisteredName) {} | 234 InspectorFrontendHostAPI.prototype.isolatedFileSystem = function(fileSystemId, r
egisteredName) {} |
234 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat
h) {} | 235 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat
h) {} |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 | 547 |
547 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} | 548 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ {
} |
548 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } | 549 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } |
549 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } | 550 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting
} */ { } |
550 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } | 551 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */
{ } |
551 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } | 552 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } |
552 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } | 553 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } |
553 | 554 |
554 /** @type {boolean} */ | 555 /** @type {boolean} */ |
555 window.dispatchStandaloneTestRunnerMessages; | 556 window.dispatchStandaloneTestRunnerMessages; |
OLD | NEW |