OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved. | 3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 34 |
35 // FIXME: use BinaryType in binaryType | 35 // FIXME: use BinaryType in binaryType |
36 enum BinaryType { "blob", "arraybuffer" }; | 36 enum BinaryType { "blob", "arraybuffer" }; |
37 | 37 |
38 [ | 38 [ |
39 ActiveDOMObject, | 39 ActiveDOMObject, |
40 // FIXME: should be optional union type http://crbug.com/240176 | 40 // FIXME: should be optional union type http://crbug.com/240176 |
41 Constructor(DOMString url, optional DOMString protocol), | 41 Constructor(DOMString url, optional DOMString protocol), |
42 Constructor(DOMString url, sequence<DOMString> protocols), | 42 Constructor(DOMString url, sequence<DOMString> protocols), |
43 ConstructorCallWith=ExecutionContext, | 43 ConstructorCallWith=ExecutionContext, |
44 Exposed=Window&Worker, | 44 Exposed=(Window,Worker), |
45 RaisesException=Constructor, | 45 RaisesException=Constructor, |
46 GarbageCollected, | 46 GarbageCollected, |
47 ImplementedAs=DOMWebSocket, | 47 ImplementedAs=DOMWebSocket, |
48 ] interface WebSocket : EventTarget { | 48 ] interface WebSocket : EventTarget { |
49 [DeprecateAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased .
url is the one in the spec, but leaving .URL for compatibility reasons. | 49 [DeprecateAs=WebSocketURL] readonly attribute DOMString URL; // Lowercased .
url is the one in the spec, but leaving .URL for compatibility reasons. |
50 readonly attribute DOMString url; | 50 readonly attribute DOMString url; |
51 | 51 |
52 // ready state | 52 // ready state |
53 const unsigned short CONNECTING = 0; | 53 const unsigned short CONNECTING = 0; |
54 const unsigned short OPEN = 1; | 54 const unsigned short OPEN = 1; |
(...skipping 11 matching lines...) Expand all Loading... |
66 [RaisesException] void close([Clamp] optional unsigned short code, optional
DOMString reason); | 66 [RaisesException] void close([Clamp] optional unsigned short code, optional
DOMString reason); |
67 | 67 |
68 // messaging | 68 // messaging |
69 attribute EventHandler onmessage; | 69 attribute EventHandler onmessage; |
70 attribute DOMString binaryType; | 70 attribute DOMString binaryType; |
71 [RaisesException] void send(DOMString data); | 71 [RaisesException] void send(DOMString data); |
72 [RaisesException] void send(Blob data); | 72 [RaisesException] void send(Blob data); |
73 [RaisesException] void send(ArrayBuffer data); | 73 [RaisesException] void send(ArrayBuffer data); |
74 [RaisesException] void send(ArrayBufferView data); | 74 [RaisesException] void send(ArrayBufferView data); |
75 }; | 75 }; |
OLD | NEW |