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

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

Issue 1624783002: DevTools: Switch to using fast stack iterator to collect stacks during timeline recording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update profiler tests Created 4 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 164
165 /** 165 /**
166 * @param {!Array.<T>} array 166 * @param {!Array.<T>} array
167 * @param {function(T,T):number} comparator 167 * @param {function(T,T):number} comparator
168 * @return {!Array.<T>} 168 * @return {!Array.<T>}
169 * @this {!Array.<T>} 169 * @this {!Array.<T>}
170 * @template T 170 * @template T
171 */ 171 */
172 Array.prototype.mergeOrdered = function(array, comparator) {} 172 Array.prototype.mergeOrdered = function(array, comparator) {}
173 173
174 /**
175 * @param {T} value
176 * @param {number} start
177 * @param {number=} end
178 * @this {!Array.<T>}
179 * @template T
180 */
181 Array.prototype.fill = function(value, start, end) {}
182
183 // File System API 174 // File System API
184 /** 175 /**
185 * @constructor 176 * @constructor
186 */ 177 */
187 function DOMFileSystem() {} 178 function DOMFileSystem() {}
188 179
189 /** 180 /**
190 * @type {DirectoryEntry} 181 * @type {DirectoryEntry}
191 */ 182 */
192 DOMFileSystem.prototype.root = null; 183 DOMFileSystem.prototype.root = null;
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 * @extends {ESTree.Node} 689 * @extends {ESTree.Node}
699 * @constructor 690 * @constructor
700 */ 691 */
701 ESTree.TemplateLiteralNode = function() 692 ESTree.TemplateLiteralNode = function()
702 { 693 {
703 /** @type {!Array.<!ESTree.Node>} */ 694 /** @type {!Array.<!ESTree.Node>} */
704 this.quasis; 695 this.quasis;
705 /** @type {!Array.<!ESTree.Node>} */ 696 /** @type {!Array.<!ESTree.Node>} */
706 this.expressions; 697 this.expressions;
707 } 698 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698