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