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

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

Issue 2409313003: [Devtools] Canvas network timeline experiment establishes scrolling (Closed)
Patch Set: Merge branch 'master' into NETWORK_TIMELINE_4_SCROLL 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 */ 617 */
618 ArrayBuffer.isView = function(obj) { } 618 ArrayBuffer.isView = function(obj) { }
619 619
620 /** 620 /**
621 * @param {Array.<Object>} keyframes 621 * @param {Array.<Object>} keyframes
622 * @param {number|Object} timing 622 * @param {number|Object} timing
623 * @return {Object} 623 * @return {Object}
624 */ 624 */
625 Element.prototype.animate = function(keyframes, timing) { } 625 Element.prototype.animate = function(keyframes, timing) { }
626 626
627 /**
628 * @override
629 * @param {string} type
630 * @param {(!EventListener|!function (!Event): (boolean|undefined)|null)} listen er
631 * @param {(boolean|!{capture: (boolean|undefined), once: (boolean|undefined), p assive: (boolean|undefined)})=} options
632 * @this {EventTarget}
633 */
634 Element.prototype.addEventListener = function(type, listener, options) { }
635
627 var acorn = { 636 var acorn = {
628 /** 637 /**
629 * @param {string} text 638 * @param {string} text
630 * @param {Object.<string, boolean>} options 639 * @param {Object.<string, boolean>} options
631 * @return {!ESTree.Node} 640 * @return {!ESTree.Node}
632 */ 641 */
633 parse: function(text, options) {}, 642 parse: function(text, options) {},
634 643
635 /** 644 /**
636 * @param {string} text 645 * @param {string} text
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 var Terminal = function(params) { } 793 var Terminal = function(params) { }
785 794
786 Terminal.prototype = { 795 Terminal.prototype = {
787 fit: function() { }, 796 fit: function() { },
788 linkify: function() { }, 797 linkify: function() { },
789 /** @param {!Element} element */ 798 /** @param {!Element} element */
790 open: function(element) { }, 799 open: function(element) { },
791 /** @param {string} eventName * @param {!Function} handler */ 800 /** @param {string} eventName * @param {!Function} handler */
792 on: function(eventName, handler) { } 801 on: function(eventName, handler) { }
793 } 802 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/network/NetworkTimelineColumn.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698