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