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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // |message| can be displayed in the inspector, but should not be passed | 58 // |message| can be displayed in the inspector, but should not be passed |
59 // to scripts. | 59 // to scripts. |
60 // This message also implies that channel is closed with | 60 // This message also implies that channel is closed with |
61 // (wasClean = false, code = 1006, reason = "") and | 61 // (wasClean = false, code = 1006, reason = "") and |
62 // |handle| becomes unavailable. | 62 // |handle| becomes unavailable. |
63 virtual void didFail(WebSocketHandle* /* handle */, const WebString& message
) = 0; | 63 virtual void didFail(WebSocketHandle* /* handle */, const WebString& message
) = 0; |
64 | 64 |
65 // Called when data are received. | 65 // Called when data are received. |
66 virtual void didReceiveData(WebSocketHandle*, bool fin, WebSocketHandle::Mes
sageType, const char* data, size_t /* size */) = 0; | 66 virtual void didReceiveData(WebSocketHandle*, bool fin, WebSocketHandle::Mes
sageType, const char* data, size_t /* size */) = 0; |
67 | 67 |
| 68 // Called when a blob is received. |
| 69 virtual void didReceiveBlob(WebSocketHandle*, const WebString& uuid, uint64_
t size) = 0; |
| 70 |
68 // Called when the handle is closed. | 71 // Called when the handle is closed. |
69 // |handle| becomes unavailable once this notification arrives. | 72 // |handle| becomes unavailable once this notification arrives. |
70 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const WebString& reason) = 0; | 73 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const WebString& reason) = 0; |
71 | 74 |
72 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; | 75 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; |
73 | 76 |
74 // Called when the browser receives a Close frame from the remote | 77 // Called when the browser receives a Close frame from the remote |
75 // server. Not called when the renderer initiates the closing handshake. | 78 // server. Not called when the renderer initiates the closing handshake. |
76 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; | 79 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; |
77 }; | 80 }; |
78 | 81 |
79 } // namespace blink | 82 } // namespace blink |
80 | 83 |
81 #endif // WebSocketHandleClient_h | 84 #endif // WebSocketHandleClient_h |
OLD | NEW |