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(ExecutionContext*, WebSocketChannelClient*);
110 virtual ~WebSocketChannel() { }
  /external/chromium_org/net/websockets/
websocket_channel.cc 78 class WebSocketChannel::SendBuffer {
98 void WebSocketChannel::SendBuffer::AddFrame(scoped_ptr<WebSocketFrame> frame) {
104 // calls on to the WebSocketChannel that created it.
105 class WebSocketChannel::ConnectDelegate
108 explicit ConnectDelegate(WebSocketChannel* creator) : creator_(creator) {}
121 // A pointer to the WebSocketChannel that created this object. There is no
122 // danger of this pointer being stale, because deleting the WebSocketChannel
125 WebSocketChannel* const creator_;
130 WebSocketChannel::WebSocketChannel(
    [all...]
websocket_channel.h 35 class NET_EXPORT WebSocketChannel {
47 // Creates a new WebSocketChannel in an idle state.
50 WebSocketChannel(scoped_ptr<WebSocketEventInterface> event_interface,
52 virtual ~WebSocketChannel();
82 // handshake, but destroying the WebSocketChannel object while connected will
136 // WebSocketChannel. WebSocketChannel does not inherit from
139 // lifetime of a WebSocketChannel is longer than the lifetime of the
275 base::OneShotTimer<WebSocketChannel> timer_;
290 DISALLOW_COPY_AND_ASSIGN(WebSocketChannel);
    [all...]

Completed in 206 milliseconds