Searched refs:WebSocketChannel (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/websockets/
H A DWebSocketChannel.h49 class WebSocketChannel : public RefCounted<WebSocketChannel>, public SocketStreamHandleClient, public ThreadableWebSocketChannel { class in namespace:WebCore
51 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) { return adoptRef(new WebSocketChannel(context, client, url, protocol)); }
52 virtual ~WebSocketChannel();
67 using RefCounted<WebSocketChannel>::ref;
68 using RefCounted<WebSocketChannel>::deref;
75 WebSocketChannel(ScriptExecutionContext*, WebSocketChannelClient*, const KURL&, const String& protocol);
H A DWebSocketChannel.cpp35 #include "WebSocketChannel.h"
54 WebSocketChannel::WebSocketChannel(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) function in class:WebCore::WebSocketChannel
63 WebSocketChannel::~WebSocketChannel()
68 void WebSocketChannel::connect()
70 LOG(Network, "WebSocketChannel %p connect", this);
77 bool WebSocketChannel::send(const String& msg)
79 LOG(Network, "WebSocketChannel %p send %s", this, msg.utf8().data());
88 unsigned long WebSocketChannel
[all...]
H A DThreadableWebSocketChannel.cpp40 #include "WebSocketChannel.h"
69 return WebSocketChannel::create(context, client, url, protocol);
H A DWorkerThreadableWebSocketChannel.cpp41 #include "WebSocketChannel.h"
100 , m_mainWebSocketChannel(WebSocketChannel::create(context, this, url, protocol))

Completed in 80 milliseconds