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

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

Issue 71633003: DevTools: added "overlayContents" mode, where DevTools content is placed around and underneath inse… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
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 215
216 /** @interface */ 216 /** @interface */
217 function InspectorFrontendHostAPI() {} 217 function InspectorFrontendHostAPI() {}
218 /** @param {Function=} callback callback */ 218 /** @param {Function=} callback callback */
219 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {} 219 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {}
220 /** @param {Function=} callback callback */ 220 /** @param {Function=} callback callback */
221 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {} 221 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {}
222 /** @param {Function=} callback callback */ 222 /** @param {Function=} callback callback */
223 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat h, callback) {} 223 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat h, callback) {}
224 /** @param {Function=} callback callback */ 224 /** @param {Function=} callback callback */
225 InspectorFrontendHostAPI.prototype.setWindowBounds = function(x, y, callback) {} 225 InspectorFrontendHostAPI.prototype.setContentsOffsets = function(left, top, righ t, bottom, callback) {}
226 /** @param {Function=} callback callback */ 226 /** @param {Function=} callback callback */
227 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {} 227 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {}
228 /** @param {Function=} callback callback */ 228 /** @param {Function=} callback callback */
229 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {} 229 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {}
230 /** @param {Function=} callback callback */ 230 /** @param {Function=} callback callback */
231 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c allback) {} 231 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c allback) {}
232 /** @param {Function=} callback callback */ 232 /** @param {Function=} callback callback */
233 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {} 233 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {}
234 /** @param {Function=} callback callback */ 234 /** @param {Function=} callback callback */
235 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca llback) {} 235 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca llback) {}
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 569
570 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 570 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
571 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 571 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
572 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 572 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
573 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 573 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
574 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 574 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
575 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 575 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
576 576
577 /** @type {boolean} */ 577 /** @type {boolean} */
578 window.dispatchStandaloneTestRunnerMessages; 578 window.dispatchStandaloneTestRunnerMessages;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698