| Index: third_party/WebCore/html/canvas/Float32Array.idl
|
| diff --git a/third_party/WebCore/html/canvas/Float32Array.idl b/third_party/WebCore/html/canvas/Float32Array.idl
|
| index 8eaebe4ded8a02cb088d2a00d9b0dcdb662d1592..b445eb40d2ce0d61029a957cd31b15cfc5998c72 100644
|
| --- a/third_party/WebCore/html/canvas/Float32Array.idl
|
| +++ b/third_party/WebCore/html/canvas/Float32Array.idl
|
| @@ -26,14 +26,15 @@
|
|
|
| module html {
|
| interface [
|
| - CustomConstructor,
|
| + ConstructorTemplate=TypedArray,
|
| ConstructorParameters=1,
|
| NumericIndexedGetter,
|
| CustomIndexedSetter,
|
| JSGenerateToNativeObject,
|
| JSNoStaticTables,
|
| CustomToJSObject,
|
| - DoNotCheckConstants
|
| + DoNotCheckConstants,
|
| + TypedArray=float
|
| ] Float32Array : ArrayBufferView {
|
| const unsigned long BYTES_PER_ELEMENT = 4;
|
|
|
| @@ -43,6 +44,6 @@ module html {
|
|
|
| // void set(in Float32Array array, [Optional] in unsigned long offset);
|
| // void set(in sequence<long> array, [Optional] in unsigned long offset);
|
| - [Custom] void set();
|
| + void set();
|
| };
|
| }
|
|
|