summaryrefslogtreecommitdiff
path: root/Source/WebCore/Modules/websockets/WebSocket.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/Modules/websockets/WebSocket.idl')
-rw-r--r--Source/WebCore/Modules/websockets/WebSocket.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/Modules/websockets/WebSocket.idl b/Source/WebCore/Modules/websockets/WebSocket.idl
index 92835ae43..e6126fc71 100644
--- a/Source/WebCore/Modules/websockets/WebSocket.idl
+++ b/Source/WebCore/Modules/websockets/WebSocket.idl
@@ -69,12 +69,12 @@ module websockets {
// booleans, null, undefined and objects except ArrayBuffer and Blob). Current code
// generator does not handle this rule correctly.
// boolean send(in ArrayBuffer data) raises(DOMException);
+ // boolean send(in ArrayBufferView data) raises(DOMException);
// boolean send(in Blob data) raises(DOMException);
// boolean send(in DOMString data) raises(DOMException);
[Custom] boolean send(in DOMString data) raises(DOMException);
- // FIXME: Implement and apply [Clamp] attribute instead of [Custom].
- [Custom] void close(in [Optional] unsigned short code, in [Optional] DOMString reason) raises(DOMException);
+ void close(in [Clamp, Optional] unsigned short code, in [Optional] DOMString reason) raises(DOMException);
// EventTarget interface
void addEventListener(in DOMString type,