summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/page
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-12-01 17:49:45 +0000
committerBen Murdoch <benm@google.com>2011-12-02 18:10:17 +0000
commit37da970a4978c0729b6a37c13d0ebc6a17c6d573 (patch)
tree6c90621b4c2e4519f815dd359ae90fd0b82847b2 /Source/WebCore/page
parent2b3fa9f062cc807eff2802da4d7eb075cc6023fc (diff)
downloadexternal_webkit-37da970a4978c0729b6a37c13d0ebc6a17c6d573.zip
external_webkit-37da970a4978c0729b6a37c13d0ebc6a17c6d573.tar.gz
external_webkit-37da970a4978c0729b6a37c13d0ebc6a17c6d573.tar.bz2
Add support for Float64Array.
Cherry pick from WebKit r87197 to add support for Float64Array. Note that this requires at least V8 3.3. In particular, this CL means that we will consume less memory executing Emscripten code. See http://trac.webkit.org/changeset/87197/ Bug: 5558474 Change-Id: I686d59acfdb56d03496f407d114826f35b4ff2c8
Diffstat (limited to 'Source/WebCore/page')
-rw-r--r--Source/WebCore/page/DOMWindow.idl1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/WebCore/page/DOMWindow.idl b/Source/WebCore/page/DOMWindow.idl
index 9f7313c..d5d3413 100644
--- a/Source/WebCore/page/DOMWindow.idl
+++ b/Source/WebCore/page/DOMWindow.idl
@@ -510,6 +510,7 @@ module window {
attribute [JSCCustomGetter] Int32ArrayConstructor Int32Array; // Usable with new operator
attribute [JSCCustomGetter] Uint32ArrayConstructor Uint32Array; // Usable with new operator
attribute [JSCCustomGetter] Float32ArrayConstructor Float32Array; // Usable with new operator
+ attribute [JSCCustomGetter] Float64ArrayConstructor Float64Array; // Usable with new operator
attribute [JSCCustomGetter] DataViewConstructor DataView; // Usable with new operator
attribute [JSCCustomGetter,Conditional=WEB_AUDIO,EnabledAtRuntime] AudioContextConstructor webkitAudioContext; // Usable with new operator