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

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

Issue 18835002: DevTools extensions: forward keyboard shortcuts to DevTools (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/devtools/front_end/ExtensionServer.js ('k') | Source/devtools/front_end/inspector.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 28 matching lines...) Expand all
39 console.trace = function() {} 39 console.trace = function() {}
40 40
41 /** @param {boolean=} param */ 41 /** @param {boolean=} param */
42 Element.prototype.scrollIntoViewIfNeeded = function(param) {} 42 Element.prototype.scrollIntoViewIfNeeded = function(param) {}
43 /** @type {boolean} */ 43 /** @type {boolean} */
44 Event.prototype.isMetaOrCtrlForTest = false; 44 Event.prototype.isMetaOrCtrlForTest = false;
45 /** @param {...*} vararg */ 45 /** @param {...*} vararg */
46 Event.prototype.initWebKitWheelEvent = function(vararg) {} 46 Event.prototype.initWebKitWheelEvent = function(vararg) {}
47 Event.prototype.stopImmediatePropagation = function() {} 47 Event.prototype.stopImmediatePropagation = function() {}
48 48
49 /**
50 * @constructor
51 * @extends {KeyboardEvent}
52 * @param {string} eventType
53 * @param {Object=} properties
54 */
55 window.KeyboardEvent = function(eventType, properties) {}
56
49 /** @param {Element} element */ 57 /** @param {Element} element */
50 window.getComputedStyle = function(element) {} 58 window.getComputedStyle = function(element) {}
51 /** @param {*} message */ 59 /** @param {*} message */
52 function postMessage(message) {} 60 function postMessage(message) {}
53 61
54 /** @type {*} */ 62 /** @type {*} */
55 window.testRunner = null; 63 window.testRunner = null;
56 64
57 /** 65 /**
58 * @constructor 66 * @constructor
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 491
484 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { } 492 WebInspector.settings.continuousPainting = /** type {WebInspector.Setting} */ { }
485 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { } 493 WebInspector.settings.showDebugBorders = /** type {WebInspector.Setting} */ { }
486 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { } 494 WebInspector.settings.showScrollBottleneckRects = /** type {WebInspector.Setting } */ { }
487 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { } 495 WebInspector.settings.forceCompositingMode = /** type {WebInspector.Setting} */ { }
488 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { } 496 WebInspector.settings.showFPSCounter = /** type {WebInspector.Setting} */ { }
489 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { } 497 WebInspector.settings.showPaintRects = /** type {WebInspector.Setting} */ { }
490 498
491 /** @type {boolean} */ 499 /** @type {boolean} */
492 window.dispatchStandaloneTestRunnerMessages; 500 window.dispatchStandaloneTestRunnerMessages;
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ExtensionServer.js ('k') | Source/devtools/front_end/inspector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698