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 // FIXME: WebSocketChannel needs to be RefCountedGarbageCollected to support manual ref/deref
50 class WebSocketChannel : public RefCountedGarbageCollected<WebSocketChannel> {
51 WTF_MAKE_NONCOPYABLE(WebSocketChannel);
53 WebSocketChannel() { }
54 static WebSocketChannel* create(ExecutionContext*, WebSocketChannelClient*);
105 virtual ~WebSocketChannel() { }
  /external/chromium_org/net/websockets/
websocket_channel.cc 127 class WebSocketChannel::SendBuffer {
147 void WebSocketChannel::SendBuffer::AddFrame(scoped_ptr<WebSocketFrame> frame) {
153 // calls on to the WebSocketChannel that created it.
154 class WebSocketChannel::ConnectDelegate
157 explicit ConnectDelegate(WebSocketChannel* creator) : creator_(creator) {}
189 // A pointer to the WebSocketChannel that created this object. There is no
190 // danger of this pointer being stale, because deleting the WebSocketChannel
193 WebSocketChannel* const creator_;
198 class WebSocketChannel::HandshakeNotificationSender
201 explicit HandshakeNotificationSender(WebSocketChannel* channel)
    [all...]
websocket_channel.h 44 class NET_EXPORT WebSocketChannel {
56 // Creates a new WebSocketChannel in an idle state.
59 WebSocketChannel(scoped_ptr<WebSocketEventInterface> event_interface,
61 virtual ~WebSocketChannel();
91 // handshake, but destroying the WebSocketChannel object while connected will
185 // WebSocketChannel. WebSocketChannel does not inherit from
188 // lifetime of a WebSocketChannel is longer than the lifetime of the
374 base::OneShotTimer<WebSocketChannel> timer_;
411 DISALLOW_COPY_AND_ASSIGN(WebSocketChannel);
    [all...]

Completed in 139 milliseconds