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

Unified Diff: third_party/WebKit/Source/devtools/front_end/platform/utilities.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/platform/utilities.js
diff --git a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
index 23ed78cb293c69b136a8ad445767e769a3dbe648..1edf9b970a48ff10343a6efb4712211a02eae093 100644
--- a/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
+++ b/third_party/WebKit/Source/devtools/front_end/platform/utilities.js
@@ -718,6 +718,10 @@ Object.defineProperty(Uint32Array.prototype, 'lowerBound', {value: Array.prototy
Object.defineProperty(Uint32Array.prototype, 'upperBound', {value: Array.prototype.upperBound});
+Object.defineProperty(Int32Array.prototype, 'lowerBound', {value: Array.prototype.lowerBound});
+
+Object.defineProperty(Int32Array.prototype, 'upperBound', {value: Array.prototype.upperBound});
+
Object.defineProperty(Float64Array.prototype, 'lowerBound', {value: Array.prototype.lowerBound});
Object.defineProperty(Array.prototype, 'binaryIndexOf', {

Powered by Google App Engine
This is Rietveld 408576698