HomeSort by relevance Sort by last modified time
    Searched defs:didClose (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannelClient.h 53 virtual void didClose(unsigned long /* unhandledBufferedAmount */, ClosingHandshakeCompletionStatus, unsigned short /* code */, const String& /* reason */) { }
ThreadableWebSocketChannelClientWrapper.cpp 190 void ThreadableWebSocketChannelClientWrapper::didClose(unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
276 wrapper->m_client->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
WebSocket.cpp 579 void WebSocket::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
581 LOG(Network, "WebSocket %p didClose()", this);
WorkerThreadableWebSocketChannel.cpp 364 workerClientWrapper->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
367 void WorkerThreadableWebSocketChannel::Peer::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
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/
WebSocketClient.h 55 virtual void didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const WebString& reason) { }
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.cc 135 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount,
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
SocketStreamHandle.cpp 142 void SocketStreamHandleInternal::didClose(WebKit::WebSocketStreamHandle* socketHandle)
144 LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 165 void WebSocketImpl::didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
167 m_client->didClose(bufferedAmount, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));

Completed in 390 milliseconds