summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/canvas/Uint32Array.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/canvas/Uint32Array.idl')
-rw-r--r--Source/WebCore/html/canvas/Uint32Array.idl7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/WebCore/html/canvas/Uint32Array.idl b/Source/WebCore/html/canvas/Uint32Array.idl
index 67e61b29f..65c44bef9 100644
--- a/Source/WebCore/html/canvas/Uint32Array.idl
+++ b/Source/WebCore/html/canvas/Uint32Array.idl
@@ -26,14 +26,15 @@
module html {
interface [
- CustomConstructor,
+ ConstructorTemplate=TypedArray,
ConstructorParameters=1,
NumericIndexedGetter,
CustomIndexedSetter,
JSGenerateToNativeObject,
JSNoStaticTables,
CustomToJSObject,
- DoNotCheckConstants
+ DoNotCheckConstants,
+ TypedArray=unsigned int
] Uint32Array : ArrayBufferView {
const unsigned long BYTES_PER_ELEMENT = 4;
@@ -42,6 +43,6 @@ module html {
// void set(in Uint32Array array, [Optional] in unsigned long offset);
// void set(in sequence<long> array, [Optional] in unsigned long offset);
- [Custom] void set();
+ void set();
};
}