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

Side by Side Diff: Source/devtools/front_end/externs.js

Issue 23289002: Introduce InspectorFrontendHost.sendMessageToFrontendHost. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 4 months 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
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.sendMessageToFrontendHost = 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 542
542 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 543 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
543 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 544 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
544 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 545 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
545 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 546 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
546 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 547 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
547 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 548 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
548 549
549 /** @type {boolean} */ 550 /** @type {boolean} */
550 window.dispatchStandaloneTestRunnerMessages; 551 window.dispatchStandaloneTestRunnerMessages;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698