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

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: No-op if no overlayContents Created 7 years 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 205
206 /** @interface */ 206 /** @interface */
207 function InspectorFrontendHostAPI() {} 207 function InspectorFrontendHostAPI() {}
208 /** @param {Function=} callback callback */ 208 /** @param {Function=} callback callback */
209 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {} 209 InspectorFrontendHostAPI.prototype.addFileSystem = function(callback) {}
210 /** @param {Function=} callback callback */ 210 /** @param {Function=} callback callback */
211 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {} 211 InspectorFrontendHostAPI.prototype.append = function(url, content, callback) {}
212 /** @param {Function=} callback callback */ 212 /** @param {Function=} callback callback */
213 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat h, callback) {} 213 InspectorFrontendHostAPI.prototype.indexPath = function(requestId, fileSystemPat h, callback) {}
214 /** @param {Function=} callback callback */ 214 /** @param {Function=} callback callback */
215 InspectorFrontendHostAPI.prototype.setWindowBounds = function(x, y, callback) {} 215 InspectorFrontendHostAPI.prototype.setContentsOffsets = function(left, top, righ t, bottom, callback) {}
216 /** @param {Function=} callback callback */ 216 /** @param {Function=} callback callback */
217 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {} 217 InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y, callback) {}
218 /** @param {Function=} callback callback */ 218 /** @param {Function=} callback callback */
219 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {} 219 InspectorFrontendHostAPI.prototype.openInNewTab = function(url, callback) {}
220 /** @param {Function=} callback callback */ 220 /** @param {Function=} callback callback */
221 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c allback) {} 221 InspectorFrontendHostAPI.prototype.removeFileSystem = function(fileSystemPath, c allback) {}
222 /** @param {Function=} callback callback */ 222 /** @param {Function=} callback callback */
223 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {} 223 InspectorFrontendHostAPI.prototype.requestFileSystems = function(callback) {}
224 /** @param {Function=} callback callback */ 224 /** @param {Function=} callback callback */
225 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca llback) {} 225 InspectorFrontendHostAPI.prototype.save = function(url, content, forceSaveAs, ca llback) {}
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 WebInspector.inspectedPageDomain; 386 WebInspector.inspectedPageDomain;
387 387
388 WebInspector.SourceJavaScriptTokenizer = {} 388 WebInspector.SourceJavaScriptTokenizer = {}
389 WebInspector.SourceJavaScriptTokenizer.Keywords = {} 389 WebInspector.SourceJavaScriptTokenizer.Keywords = {}
390 390
391 /** 391 /**
392 * @return {boolean} 392 * @return {boolean}
393 */ 393 */
394 WebInspector.isInspectingDevice = function() {} 394 WebInspector.isInspectingDevice = function() {}
395 395
396 /**
397 * @return {boolean}
398 */
399 WebInspector.useOverlayContentsLayout = function() {}
400
396 var InspectorTest = {} 401 var InspectorTest = {}
397 402
398 /* jsdifflib API */ 403 /* jsdifflib API */
399 var difflib = {}; 404 var difflib = {};
400 difflib.stringAsLines = function(text) { return []; } 405 difflib.stringAsLines = function(text) { return []; }
401 /** @constructor */ 406 /** @constructor */
402 difflib.SequenceMatcher = function(baseText, newText) { } 407 difflib.SequenceMatcher = function(baseText, newText) { }
403 difflib.SequenceMatcher.prototype.get_opcodes = function() { return []; } 408 difflib.SequenceMatcher.prototype.get_opcodes = function() { return []; }
404 409
405 /** @constructor */ 410 /** @constructor */
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 570
566 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 571 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
567 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 572 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
568 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 573 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
569 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 574 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
570 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 575 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
571 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 576 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
572 577
573 /** @type {boolean} */ 578 /** @type {boolean} */
574 window.dispatchStandaloneTestRunnerMessages; 579 window.dispatchStandaloneTestRunnerMessages;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698