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

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

Issue 2377193004: [DevTools] Rework some focus code. (Closed)
Patch Set: fixes Created 4 years, 2 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
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 24 matching lines...) Expand all
35 * @param {!Function} callback 35 * @param {!Function} callback
36 */ 36 */
37 Object.observe = function(object, callback) {} 37 Object.observe = function(object, callback) {}
38 38
39 /** @type {boolean} */ 39 /** @type {boolean} */
40 Event.prototype.isMetaOrCtrlForTest; 40 Event.prototype.isMetaOrCtrlForTest;
41 41
42 /** @type {string} */ 42 /** @type {string} */
43 Event.prototype.code; 43 Event.prototype.code;
44 44
45 /** @type {boolean} */
46 Node.prototype.isConnected;
pfeldman 2016/09/30 22:29:03 Firefox: No public signals Edge: No public signals
dgozman 2016/09/30 23:28:24 Removed for now :-)
47
45 /** 48 /**
46 * TODO(luoe): MouseEvent properties movementX and movementY from the 49 * TODO(luoe): MouseEvent properties movementX and movementY from the
47 * PointerLock API are not yet standard. Once they are included in 50 * PointerLock API are not yet standard. Once they are included in
48 * Closure Compiler, these custom externs can be removed. 51 * Closure Compiler, these custom externs can be removed.
49 */ 52 */
50 /** @type {number} */ 53 /** @type {number} */
51 MouseEvent.prototype.movementX; 54 MouseEvent.prototype.movementX;
52 55
53 /** @type {number} */ 56 /** @type {number} */
54 MouseEvent.prototype.movementY; 57 MouseEvent.prototype.movementY;
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 /** @type {(string|!Array<!Gonzales.Node>)} */ 772 /** @type {(string|!Array<!Gonzales.Node>)} */
770 this.content; 773 this.content;
771 } 774 }
772 775
773 /** 776 /**
774 * @type {string} 777 * @type {string}
775 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object 778 * @see http://heycam.github.io/webidl/#es-DOMException-prototype-object
776 * TODO(jsbell): DOMException should be a subclass of Error. 779 * TODO(jsbell): DOMException should be a subclass of Error.
777 */ 780 */
778 DOMException.prototype.message; 781 DOMException.prototype.message;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698