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