Searched defs:didClose (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketChannelClient.h54 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { } function in class:blink::WebSocketChannelClient
H A DNewWebSocketChannelImpl.cpp395 client->didClose(status, code, reason);
396 // client->didClose may delete this object.
505 void NewWebSocketChannelImpl::didClose(WebSocketHandle* handle, bool wasClean, unsigned short code, const WebString& reason) function in class:blink::NewWebSocketChannelImpl
507 WTF_LOG(Network, "NewWebSocketChannelImpl %p didClose(%p, %d, %u, %s)", this, handle, wasClean, code, String(reason).utf8().data());
H A DWorkerThreadableWebSocketChannel.cpp346 bridge->client()->didClose(closingHandshakeCompletion, code, reason);
349 void Peer::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason) function in class:blink::Peer
463 // Caller of this function should hold a reference to the bridge, because this function may call WebSocket::didClose() in the end,
H A DDOMWebSocket.cpp661 void DOMWebSocket::didClose(ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason) function in class:blink::DOMWebSocket
663 WTF_LOG(Network, "WebSocket %p didClose()", this);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSocketClient.h55 virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { } function in class:blink::WebSocketClient
60 virtual void didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { } function in class:blink::WebSocketClient
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamHandle.cpp141 void SocketStreamHandleInternal::didClose(blink::WebSocketStreamHandle* socketHandle) function in class:blink::SocketStreamHandleInternal
143 WTF_LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocketImpl.cpp202 void WebSocketImpl::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason) function in class:blink::WebSocketImpl
205 m_client->didClose(static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
208 m_client->didClose(m_bufferedAmount - m_bufferedAmountAfterClose, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_websocket_host.cc164 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount, function in class:content::PepperWebSocketHost

Completed in 156 milliseconds