OLD | NEW |
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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 /** @type {Object.<string, !Object.<string, string>>} */ | 612 /** @type {Object.<string, !Object.<string, string>>} */ |
613 CodeMirror.keyMap; | 613 CodeMirror.keyMap; |
614 | 614 |
615 /** @type {{scrollLeft: number, scrollTop: number}} */ | 615 /** @type {{scrollLeft: number, scrollTop: number}} */ |
616 CodeMirror.doc; | 616 CodeMirror.doc; |
617 | 617 |
618 /** @type {boolean} */ | 618 /** @type {boolean} */ |
619 window.dispatchStandaloneTestRunnerMessages; | 619 window.dispatchStandaloneTestRunnerMessages; |
620 | 620 |
621 /** | 621 /** |
622 * @param {*} obj | |
623 * @return {boolean} | |
624 */ | |
625 ArrayBuffer.isView = function(obj) {}; | |
626 | |
627 /** | |
628 * @param {Array.<Object>} keyframes | 622 * @param {Array.<Object>} keyframes |
629 * @param {number|Object} timing | 623 * @param {number|Object} timing |
630 * @return {Object} | 624 * @return {Object} |
631 */ | 625 */ |
632 Element.prototype.animate = function(keyframes, timing) {}; | 626 Element.prototype.animate = function(keyframes, timing) {}; |
633 | 627 |
634 /** | 628 /** |
635 * @override | 629 * @override |
636 * @param {string} type | 630 * @param {string} type |
637 * @param {(!EventListener|!function (!Event): (boolean|undefined)|null)} listen
er | 631 * @param {(!EventListener|!function (!Event): (boolean|undefined)|null)} listen
er |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 var Terminal = {}; | 841 var Terminal = {}; |
848 var TestRunner = {}; | 842 var TestRunner = {}; |
849 var TextEditor = {}; | 843 var TextEditor = {}; |
850 var Timeline = {}; | 844 var Timeline = {}; |
851 var TimelineModel = {}; | 845 var TimelineModel = {}; |
852 var ToolboxBootstrap = {}; | 846 var ToolboxBootstrap = {}; |
853 var UI = {}; | 847 var UI = {}; |
854 var UtilitySharedWorker = {}; | 848 var UtilitySharedWorker = {}; |
855 var WorkerService = {}; | 849 var WorkerService = {}; |
856 var Workspace = {}; | 850 var Workspace = {}; |
OLD | NEW |