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

Unified Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2604013003: [DevTools] Support variable height in ListControl. (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/externs.js
diff --git a/third_party/WebKit/Source/devtools/front_end/externs.js b/third_party/WebKit/Source/devtools/front_end/externs.js
index eba7edbfb85290b3e4653c540178edc13160b493..57463b92cf5ac8e6e08ea98cebe1ed9713f6bf62 100644
--- a/third_party/WebKit/Source/devtools/front_end/externs.js
+++ b/third_party/WebKit/Source/devtools/front_end/externs.js
@@ -91,19 +91,23 @@ Array.prototype.sortNumbers = function() {};
/**
* @param {!S} object
* @param {function(!S,!T):number=} comparator
+ * @param {number=} left
+ * @param {number=} right
* @return {number}
* @this {Array.<T>}
* @template S
*/
-Array.prototype.lowerBound = function(object, comparator) {};
+Array.prototype.lowerBound = function(object, comparator, left, right) {};
/**
* @param {!S} object
* @param {function(!S,!T):number=} comparator
+ * @param {number=} left
+ * @param {number=} right
* @return {number}
* @this {Array.<T>}
* @template S
*/
-Array.prototype.upperBound = function(object, comparator) {};
+Array.prototype.upperBound = function(object, comparator, left, right) {};
/**
* @param {!S} value
* @param {function(!S,!T):number} comparator
@@ -182,6 +186,15 @@ Array.prototype.intersectOrdered = function(array, comparator) {};
*/
Array.prototype.mergeOrdered = function(array, comparator) {};
+/**
+ * @param {number} object
+ * @param {function(number, number):number=} comparator
+ * @param {number=} left
+ * @param {number=} right
+ * @return {number}
+ */
+Int32Array.prototype.lowerBound = function(object, comparator, left, right) {};
+
// File System API
/**
* @constructor

Powered by Google App Engine
This is Rietveld 408576698