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

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

Issue 2694923002: DevTools: Changes Drawer (Closed)
Patch Set: slightly better Created 3 years, 10 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 CodeMirror.LineWidget.prototype = { 621 CodeMirror.LineWidget.prototype = {
622 clear: function() {} 622 clear: function() {}
623 }; 623 };
624 624
625 /** @type {Object.<string, !Object.<string, string>>} */ 625 /** @type {Object.<string, !Object.<string, string>>} */
626 CodeMirror.keyMap; 626 CodeMirror.keyMap;
627 627
628 /** @type {{scrollLeft: number, scrollTop: number}} */ 628 /** @type {{scrollLeft: number, scrollTop: number}} */
629 CodeMirror.doc; 629 CodeMirror.doc;
630 630
631 /**
632 * @param {string} mime
633 * @param {string} mode
634 */
635 CodeMirror.defineMIME = function(mime, mode) {};
636
631 /** @type {boolean} */ 637 /** @type {boolean} */
632 window.dispatchStandaloneTestRunnerMessages; 638 window.dispatchStandaloneTestRunnerMessages;
633 639
634 /** 640 /**
635 * @param {Array.<Object>} keyframes 641 * @param {Array.<Object>} keyframes
636 * @param {number|Object} timing 642 * @param {number|Object} timing
637 * @return {Object} 643 * @return {Object}
638 */ 644 */
639 Element.prototype.animate = function(keyframes, timing) {}; 645 Element.prototype.animate = function(keyframes, timing) {};
640 646
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 var Animation = {}; 826 var Animation = {};
821 /** @type {!Object} */ 827 /** @type {!Object} */
822 var Audits = {}; 828 var Audits = {};
823 /** @type {!Object} */ 829 /** @type {!Object} */
824 var Audits2 = {}; 830 var Audits2 = {};
825 /** @type {!Object} */ 831 /** @type {!Object} */
826 var Audits2Worker = {}; 832 var Audits2Worker = {};
827 /** @type {!Object} */ 833 /** @type {!Object} */
828 var Bindings = {}; 834 var Bindings = {};
829 /** @type {!Object} */ 835 /** @type {!Object} */
836 var Changes = {};
837 /** @type {!Object} */
830 var CmModes = {}; 838 var CmModes = {};
831 /** @type {!Object} */ 839 /** @type {!Object} */
832 var ColorPicker = {}; 840 var ColorPicker = {};
833 /** @type {!Object} */ 841 /** @type {!Object} */
834 var Common = {}; 842 var Common = {};
835 /** @type {!Object} */ 843 /** @type {!Object} */
836 var Components = {}; 844 var Components = {};
837 // Closure uses Console as a namespace item so we cannot override it right now. 845 // Closure uses Console as a namespace item so we cannot override it right now.
838 var Console = {}; 846 var Console = {};
839 /** @type {!Object} */ 847 /** @type {!Object} */
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 /** @type {!Object} */ 927 /** @type {!Object} */
920 var ToolboxBootstrap = {}; 928 var ToolboxBootstrap = {};
921 /** @type {!Object} */ 929 /** @type {!Object} */
922 var UI = {}; 930 var UI = {};
923 /** @type {!Object} */ 931 /** @type {!Object} */
924 var UtilitySharedWorker = {}; 932 var UtilitySharedWorker = {};
925 /** @type {!Object} */ 933 /** @type {!Object} */
926 var WorkerService = {}; 934 var WorkerService = {};
927 /** @type {!Object} */ 935 /** @type {!Object} */
928 var Workspace = {}; 936 var Workspace = {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698