HomeSort by relevance Sort by last modified time
    Searched defs:didClose (Results 1 - 9 of 9) 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 187 void ThreadableWebSocketChannelClientWrapper::didClose(unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
273 wrapper->m_client->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
NewWebSocketChannelImpl.cpp 338 client->didClose(m_bufferedAmount, status, code, reason);
339 // client->didClose may delete this object.
441 void NewWebSocketChannelImpl::didClose(WebSocketHandle* handle, bool wasClean, unsigned short code, const blink::WebString& reason)
443 WTF_LOG(Network, "NewWebSocketChannelImpl %p didClose(%p, %d, %u, %s)", this, handle, wasClean, code, String(reason).utf8().data());
WebSocket.cpp 649 void WebSocket::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
651 WTF_LOG(Network, "WebSocket %p didClose()", this);
WorkerThreadableWebSocketChannel.cpp 347 workerClientWrapper->didClose(unhandledBufferedAmount, closingHandshakeCompletion, code, reason);
350 void WorkerThreadableWebSocketChannel::Peer::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
657 // 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/platform/network/
SocketStreamHandle.cpp 141 void SocketStreamHandleInternal::didClose(blink::WebSocketStreamHandle* socketHandle)
143 WTF_LOG(Network, "SocketStreamHandleInternal %p didClose()", this);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 163 void WebSocketImpl::didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason)
165 m_client->didClose(bufferedAmount, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));

Completed in 651 milliseconds