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