Searched refs:WebSocketImpl (Results 1 – 15 of 15) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebSocketImpl.cpp | 52 WebSocketImpl::WebSocketImpl(const WebDocument& document, WebSocketClient* client) in WebSocketImpl() function in blink::WebSocketImpl 67 WebSocketImpl::~WebSocketImpl() in ~WebSocketImpl() 72 WebSocket::BinaryType WebSocketImpl::binaryType() const in binaryType() 77 bool WebSocketImpl::setBinaryType(BinaryType binaryType) in setBinaryType() 85 void WebSocketImpl::connect(const WebURL& url, const WebString& protocol) in connect() 90 WebString WebSocketImpl::subprotocol() in subprotocol() 95 WebString WebSocketImpl::extensions() in extensions() 100 bool WebSocketImpl::sendText(const WebString& message) in sendText() 116 bool WebSocketImpl::sendArrayBuffer(const WebArrayBuffer& webArrayBuffer) in sendArrayBuffer() 132 unsigned long WebSocketImpl::bufferedAmount() const in bufferedAmount() [all …]
|
D | WebSocketImpl.h | 50 class WebSocketImpl FINAL : public WebSocket, public WebCore::WebSocketChannelClient { 52 WebSocketImpl(const WebDocument&, WebSocketClient*); 53 virtual ~WebSocketImpl();
|
D | WebSocket.cpp | 43 OwnPtr<WebSocketImpl> websocket = adoptPtr(new WebSocketImpl(document, client)); in create()
|
D | web.gypi | 232 'WebSocketImpl.cpp', 233 'WebSocketImpl.h',
|
D | blink_web.target.darwin-arm.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.linux-mips.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.linux-arm64.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.darwin-x86_64.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.linux-x86.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.darwin-arm64.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.linux-arm.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.darwin-x86.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.darwin-mips.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
D | blink_web.target.linux-x86_64.mk | 244 third_party/WebKit/Source/web/WebSocketImpl.cpp \
|
/external/chromium_org/chrome/browser/devtools/device/ |
D | android_web_socket.cc | 21 class WebSocketImpl : public AndroidDeviceManager::AndroidWebSocket { class 24 WebSocketImpl(scoped_refptr<base::MessageLoopProxy> device_message_loop, 38 virtual ~WebSocketImpl(); 61 WebSocketImpl::WebSocketImpl( in WebSocketImpl() function in __anon016d14c70111::WebSocketImpl 74 void WebSocketImpl::Connect() { in Connect() 77 socket_name_, url_, base::Bind(&WebSocketImpl::Connected, this)); in Connect() 80 void WebSocketImpl::Disconnect() { in Disconnect() 84 base::Bind(&WebSocketImpl::DisconnectOnHandlerThread, this, false)); in Disconnect() 87 void WebSocketImpl::SendFrame(const std::string& message) { in SendFrame() 91 base::Bind(&WebSocketImpl::SendFrameOnHandlerThread, this, message)); in SendFrame() [all …]
|