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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 ~WebSocketHandleImpl() override; | 43 ~WebSocketHandleImpl() override; |
44 | 44 |
45 void initialize(InterfaceProvider*) override; | 45 void initialize(InterfaceProvider*) override; |
46 void connect(const KURL&, const Vector<String>& protocols, SecurityOrigin*,
const KURL& firstPartyForCookies, const String& userAgentOverride, WebSocketHand
leClient*) override; | 46 void connect(const KURL&, const Vector<String>& protocols, SecurityOrigin*,
const KURL& firstPartyForCookies, const String& userAgentOverride, WebSocketHand
leClient*) override; |
47 void send(bool fin, MessageType, const char* data, size_t) override; | 47 void send(bool fin, MessageType, const char* data, size_t) override; |
48 void flowControl(int64_t quota) override; | 48 void flowControl(int64_t quota) override; |
49 void close(unsigned short code, const String& reason) override; | 49 void close(unsigned short code, const String& reason) override; |
50 | 50 |
51 private: | 51 private: |
52 void disconnect(); | 52 void disconnect(); |
53 void onConnectionError(); | 53 void onConnectionError(uint32_t customReason, const std::string& description
); |
54 | 54 |
55 // mojom::blink::WebSocketClient methods: | 55 // mojom::blink::WebSocketClient methods: |
56 void OnFailChannel(const String& reason) override; | 56 void OnFailChannel(const String& reason) override; |
57 void OnStartOpeningHandshake(mojom::blink::WebSocketHandshakeRequestPtr) ove
rride; | 57 void OnStartOpeningHandshake(mojom::blink::WebSocketHandshakeRequestPtr) ove
rride; |
58 void OnFinishOpeningHandshake(mojom::blink::WebSocketHandshakeResponsePtr) o
verride; | 58 void OnFinishOpeningHandshake(mojom::blink::WebSocketHandshakeResponsePtr) o
verride; |
59 void OnAddChannelResponse(const String& selectedProtocol, const String& exte
nsions) override; | 59 void OnAddChannelResponse(const String& selectedProtocol, const String& exte
nsions) override; |
60 void OnDataFrame(bool fin, mojom::blink::WebSocketMessageType, const Vector<
uint8_t>& data) override; | 60 void OnDataFrame(bool fin, mojom::blink::WebSocketMessageType, const Vector<
uint8_t>& data) override; |
61 void OnFlowControl(int64_t quota) override; | 61 void OnFlowControl(int64_t quota) override; |
62 void OnDropChannel(bool wasClean, uint16_t code, const String& reason) overr
ide; | 62 void OnDropChannel(bool wasClean, uint16_t code, const String& reason) overr
ide; |
63 void OnClosingHandshake() override; | 63 void OnClosingHandshake() override; |
64 | 64 |
65 WebSocketHandleClient* m_client; | 65 WebSocketHandleClient* m_client; |
66 | 66 |
67 mojom::blink::WebSocketPtr m_websocket; | 67 mojom::blink::WebSocketPtr m_websocket; |
68 mojo::Binding<mojom::blink::WebSocketClient> m_clientBinding; | 68 mojo::Binding<mojom::blink::WebSocketClient> m_clientBinding; |
69 }; | 69 }; |
70 | 70 |
71 } // namespace blink | 71 } // namespace blink |
72 | 72 |
73 #endif // WebSocketHandleImpl_h | 73 #endif // WebSocketHandleImpl_h |
OLD | NEW |