| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // ready state | 44 // ready state |
| 45 const unsigned short CONNECTING = 0; | 45 const unsigned short CONNECTING = 0; |
| 46 const unsigned short OPEN = 1; | 46 const unsigned short OPEN = 1; |
| 47 const unsigned short CLOSING = 2; | 47 const unsigned short CLOSING = 2; |
| 48 const unsigned short CLOSED = 3; | 48 const unsigned short CLOSED = 3; |
| 49 readonly attribute unsigned short readyState; | 49 readonly attribute unsigned short readyState; |
| 50 | 50 |
| 51 readonly attribute unsigned long bufferedAmount; | 51 readonly attribute unsigned long bufferedAmount; |
| 52 | 52 |
| 53 // networking | 53 // networking |
| 54 attribute EventListener onopen; | 54 attribute EventHandler onopen; |
| 55 attribute EventListener onmessage; | 55 attribute EventHandler onmessage; |
| 56 attribute EventListener onerror; | 56 attribute EventHandler onerror; |
| 57 attribute EventListener onclose; | 57 attribute EventHandler onclose; |
| 58 | 58 |
| 59 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol; | 59 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString protocol; |
| 60 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extension
s; | 60 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString extension
s; |
| 61 | 61 |
| 62 attribute DOMString binaryType; | 62 attribute DOMString binaryType; |
| 63 | 63 |
| 64 [RaisesException] void send(ArrayBuffer data); | 64 [RaisesException] void send(ArrayBuffer data); |
| 65 [RaisesException] void send(ArrayBufferView data); | 65 [RaisesException] void send(ArrayBufferView data); |
| 66 [RaisesException] void send(Blob data); | 66 [RaisesException] void send(Blob data); |
| 67 [RaisesException] void send(DOMString data); | 67 [RaisesException] void send(DOMString data); |
| 68 | 68 |
| 69 [RaisesException] void close([Clamp] optional unsigned short code, optional
DOMString reason); | 69 [RaisesException] void close([Clamp] optional unsigned short code, optional
DOMString reason); |
| 70 }; | 70 }; |
| OLD | NEW |