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

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketChannel.h 47 class WebSocketChannel {
48 WTF_MAKE_NONCOPYABLE(WebSocketChannel);
50 WebSocketChannel() { }
51 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext*, WebSocketChannelClient*);
110 virtual ~WebSocketChannel() { }
  /external/chromium_org/net/websockets/
websocket_channel.cc 51 class WebSocketChannel::SendBuffer {
71 void WebSocketChannel::SendBuffer::AddFrame(
78 // calls on to the WebSocketChannel that created it.
79 class WebSocketChannel::ConnectDelegate
82 explicit ConnectDelegate(WebSocketChannel* creator) : creator_(creator) {}
93 // A pointer to the WebSocketChannel that created us. We do not need to worry
94 // about this pointer being stale, because deleting WebSocketChannel cancels
97 WebSocketChannel* const creator_;
102 WebSocketChannel::WebSocketChannel(
    [all...]
websocket_channel.h 30 class NET_EXPORT WebSocketChannel {
42 // Creates a new WebSocketChannel with the specified parameters.
45 WebSocketChannel(const GURL& socket_url,
47 virtual ~WebSocketChannel();
77 // handshake, but destroying the WebSocketChannel object while connected will
123 // lifetime of a WebSocketChannel is longer than the lifetime of the
262 DISALLOW_COPY_AND_ASSIGN(WebSocketChannel);

Completed in 65 milliseconds