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

  /external/chromium_org/third_party/WebKit/Source/web/
WebSocketImpl.cpp 87 WebString WebSocketImpl::subprotocol() function in class:WebKit::WebSocketImpl
89 return m_private->subprotocol();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
ThreadableWebSocketChannelClientWrapper.cpp 102 String ThreadableWebSocketChannelClientWrapper::subprotocol() const function in class:WebCore::ThreadableWebSocketChannelClientWrapper
109 void ThreadableWebSocketChannelClientWrapper::setSubprotocol(const String& subprotocol)
112 append(m_subprotocol, subprotocol);
MainThreadWebSocketChannel.cpp 121 String MainThreadWebSocketChannel::subprotocol() function in class:WebCore::MainThreadWebSocketChannel
123 LOG(Network, "MainThreadWebSocketChannel %p subprotocol()", this);
    [all...]
WorkerThreadableWebSocketChannel.cpp 92 String WorkerThreadableWebSocketChannel::subprotocol() function in class:WebCore::WorkerThreadableWebSocketChannel
95 return m_workerClientWrapper->subprotocol();
299 static void workerGlobalScopeDidConnect(ScriptExecutionContext* context, PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, const String& subprotocol, const String& extensions)
302 workerClientWrapper->setSubprotocol(subprotocol);
310 m_loaderProxy.postTaskForModeToWorkerGlobalScope(createCallbackTask(&workerGlobalScopeDidConnect, m_workerClientWrapper, m_mainWebSocketChannel->subprotocol(), m_mainWebSocketChannel->extensions()), m_taskMode);

Completed in 363 milliseconds