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

  /external/chromium_org/third_party/WebKit/public/platform/
WebSocketStreamHandleClient.h 56 virtual void didClose(WebSocketStreamHandle*) = 0;
  /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.h 84 void didClose(unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus, unsigned short code, const String& reason);
WebSocket.h 122 virtual void didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
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);
WorkerThreadableWebSocketChannel.h 75 virtual void disconnect() OVERRIDE; // Will suppress didClose().
109 virtual void didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
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,
WebSocket.cpp 579 void WebSocket::didClose(unsigned long unhandledBufferedAmount, ClosingHandshakeCompletionStatus closingHandshakeCompletion, unsigned short code, const String& reason)
581 LOG(Network, "WebSocket %p didClose()", this);
MainThreadWebSocketChannel.cpp 292 client->didClose(m_unhandledBufferedAmount, m_receivedClosingHandshake ? WebSocketChannelClient::ClosingHandshakeComplete : WebSocketChannelClient::ClosingHandshakeIncomplete, m_closeEventCode, m_closeEventReason);
    [all...]
  /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/third_party/WebKit/Source/core/platform/network/
SocketStreamHandleInternal.h 64 virtual void didClose(WebKit::WebSocketStreamHandle*);
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));
WebSocketImpl.h 75 virtual void didClose(unsigned long bufferedAmount, ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) OVERRIDE;
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.h 48 virtual void didClose(unsigned long unhandled_buffered_amount,
pepper_websocket_host.cc 135 void PepperWebSocketHost::didClose(unsigned long unhandled_buffered_amount,
  /external/chromium/webkit/glue/
websocketstreamhandle_impl.cc 49 virtual void DidClose(WebKit::WebSocketStreamHandle*);
61 // |bridge_| is alive from Connect to DidClose, so Context must be alive
78 AddRef(); // Will be released by DidClose().
99 // the |bridge_| here. Then |bridge_| will call back DidClose, and will
125 void WebSocketStreamHandleImpl::Context::DidClose(
127 VLOG(1) << "DidClose";
134 client->didClose(handle);
148 // DidClose.
  /external/chromium_org/webkit/child/
websocketstreamhandle_impl.cc 59 virtual void DidClose(WebSocketStreamHandle*) OVERRIDE;
72 // |bridge_| is alive from Connect to DidClose, so Context must be alive
90 AddRef(); // Will be released by DidClose().
111 // the |bridge_| here. Then |bridge_| will call back DidClose, and will
137 void WebSocketStreamHandleImpl::Context::DidClose(
139 VLOG(1) << "DidClose";
146 client->didClose(handle);
174 // DidClose.

Completed in 243 milliseconds