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 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebSocketHandleClient_h | 31 #ifndef WebSocketHandleClient_h |
32 #define WebSocketHandleClient_h | 32 #define WebSocketHandleClient_h |
33 | 33 |
34 #include "modules/websockets/WebSocketHandle.h" | 34 #include "public/platform/WebCommon.h" |
35 #include "wtf/Forward.h" | 35 #include "public/platform/WebString.h" |
| 36 #include "public/platform/modules/websockets/WebSocketHandle.h" |
36 | 37 |
37 namespace blink { | 38 namespace blink { |
38 class WebSocketHandshakeRequest; | 39 |
39 class WebSocketHandshakeResponse; | 40 class WebSocketHandshakeRequestInfo; |
| 41 class WebSocketHandshakeResponseInfo; |
40 | 42 |
41 class WebSocketHandleClient { | 43 class WebSocketHandleClient { |
42 public: | 44 public: |
43 // Called when the handle is opened. | 45 // Called when the handle is opened. |
44 virtual void didConnect(WebSocketHandle*, const String& selectedProtocol, co
nst String& extensions) = 0; | 46 virtual void didConnect(WebSocketHandle*, const WebString& selectedProtocol,
const WebString& extensions) = 0; |
45 | 47 |
46 // Called when the browser starts the opening handshake. | 48 // Called when the browser starts the opening handshake. |
47 // This notification can be omitted when the inspector is not active. | 49 // This notification can be omitted when the inspector is not active. |
48 virtual void didStartOpeningHandshake(WebSocketHandle*, PassRefPtr<WebSocket
HandshakeRequest>) = 0; | 50 virtual void didStartOpeningHandshake(WebSocketHandle*, const WebSocketHands
hakeRequestInfo&) = 0; |
49 | 51 |
50 // Called when the browser finishes the opening handshake. | 52 // Called when the browser finishes the opening handshake. |
51 // This notification precedes didConnect. | 53 // This notification precedes didConnect. |
52 // This notification can be omitted when the inspector is not active. | 54 // This notification can be omitted when the inspector is not active. |
53 virtual void didFinishOpeningHandshake(WebSocketHandle*, const WebSocketHand
shakeResponse*) = 0; | 55 virtual void didFinishOpeningHandshake(WebSocketHandle*, const WebSocketHand
shakeResponseInfo&) = 0; |
54 | 56 |
55 // Called when the browser is required to fail the connection. | 57 // Called when the browser is required to fail the connection. |
56 // |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 |
57 // to scripts. | 59 // to scripts. |
58 // This message also implies that channel is closed with | 60 // This message also implies that channel is closed with |
59 // (wasClean = false, code = 1006, reason = "") and | 61 // (wasClean = false, code = 1006, reason = "") and |
60 // |handle| becomes unavailable. | 62 // |handle| becomes unavailable. |
61 virtual void didFail(WebSocketHandle* /* handle */, const String& message) =
0; | 63 virtual void didFail(WebSocketHandle* /* handle */, const WebString& message
) = 0; |
62 | 64 |
63 // Called when data are received. | 65 // Called when data are received. |
64 virtual void didReceiveData(WebSocketHandle*, bool fin, WebSocketHandle::Mes
sageType, const char* data, size_t) = 0; | 66 virtual void didReceiveData(WebSocketHandle*, bool fin, WebSocketHandle::Mes
sageType, const char* data, size_t /* size */) = 0; |
65 | 67 |
66 // Called when the handle is closed. | 68 // Called when the handle is closed. |
67 // |handle| becomes unavailable once this notification arrives. | 69 // |handle| becomes unavailable once this notification arrives. |
68 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const String& reason) = 0; | 70 virtual void didClose(WebSocketHandle* /* handle */, bool wasClean, unsigned
short code, const WebString& reason) = 0; |
69 | 71 |
70 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; | 72 virtual void didReceiveFlowControl(WebSocketHandle*, int64_t quota) = 0; |
71 | 73 |
72 // Called when the browser receives a Close frame from the remote | 74 // Called when the browser receives a Close frame from the remote |
73 // server. Not called when the renderer initiates the closing handshake. | 75 // server. Not called when the renderer initiates the closing handshake. |
74 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; | 76 virtual void didStartClosingHandshake(WebSocketHandle*) = 0; |
75 }; | 77 }; |
76 | 78 |
77 } // namespace blink | 79 } // namespace blink |
78 | 80 |
79 #endif // WebSocketHandleClient_h | 81 #endif // WebSocketHandleClient_h |
OLD | NEW |