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

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketChannelClient.h53 virtual void didClose(unsigned long /* unhandledBufferedAmount */, ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { } function in class:WebCore::WebSocketChannelClient
H A DThreadableWebSocketChannelClientWrapper.cpp190 void ThreadableWebSocketChannelClientWrapper::didClose(unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason) function in class:WebCore::ThreadableWebSocketChannelClientWrapper
276 wrapper->m_client->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
H A DWebSocket.cpp579 void WebSocket::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason) function in class:WebCore::WebSocket
581 LOG(Network, "WebSocket %p didClose()", this);
H A DWorkerThreadableWebSocketChannel.cpp364 workerClientWrapper->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
367 void WorkerThreadableWebSocketChannel::Peer::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason) function in class:WebCore::WorkerThreadableWebSocketChannel::Peer
676 // Caller of this function should hold a reference to the bridge, because this function may call WebSocket::didClose() in the end,
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSocketClient.h55 virtual void didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { } function in class:WebKit::WebSocketClient
/external/chromium_org/third_party/WebKit/Source/core/platform/network/
H A DSocketStreamHandle.cpp142 void SocketStreamHandleInternal::didClose(WebKit::WebSocketStreamHandle* socketHandle) function in class:WebCore::SocketStreamHandleInternal
144 LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocketImpl.cpp165 void WebSocketImpl::didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason) function in class:WebKit::WebSocketImpl
167 m_client->didClose(bufferedAmount, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_websocket_host.cc135 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount, function in class:content::PepperWebSocketHost

Completed in 237 milliseconds