OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 // Once a WebSocketHandleClient receives DidClose, any method of the correspondi
ng WebSocketHandle can't be called. | 48 // Once a WebSocketHandleClient receives DidClose, any method of the correspondi
ng WebSocketHandle can't be called. |
49 | 49 |
50 class WebSocketHandle { | 50 class WebSocketHandle { |
51 public: | 51 public: |
52 enum MessageType { | 52 enum MessageType { |
53 MessageTypeContinuation, | 53 MessageTypeContinuation, |
54 MessageTypeText, | 54 MessageTypeText, |
55 MessageTypeBinary, | 55 MessageTypeBinary, |
56 }; | 56 }; |
57 | 57 |
| 58 enum BinaryType { |
| 59 BinaryTypeBlob, |
| 60 BinaryTypeArrayBuffer, |
| 61 }; |
| 62 |
58 virtual ~WebSocketHandle() { } | 63 virtual ~WebSocketHandle() { } |
59 | 64 |
60 virtual void connect(const WebURL&, const WebVector<WebString>& protocols, c
onst WebSecurityOrigin&, WebSocketHandleClient*) = 0; | 65 virtual void connect(const WebURL&, const WebVector<WebString>& protocols, c
onst WebSecurityOrigin&, WebSocketHandleClient*) = 0; |
61 virtual void send(bool fin, MessageType, const char* data, size_t /* size */
) = 0; | 66 virtual void send(bool fin, MessageType, const char* data, size_t /* size */
) = 0; |
62 virtual void flowControl(int64_t quota) = 0; | 67 virtual void flowControl(int64_t quota) = 0; |
63 virtual void close(unsigned short code, const WebString& reason) = 0; | 68 virtual void close(unsigned short code, const WebString& reason) = 0; |
| 69 virtual void changeBinaryType(BinaryType) = 0; |
| 70 virtual void confirmBlob() = 0; |
64 }; | 71 }; |
65 | 72 |
66 } // namespace blink | 73 } // namespace blink |
67 | 74 |
68 #endif // WebSocketHandle_h | 75 #endif // WebSocketHandle_h |
OLD | NEW |