Searched refs:selectedProtocol (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebSocketHandleClient.h48 virtual void didConnect(WebSocketHandle*, bool fail, const WebString& selectedProtocol, const WebString& extensions) = 0;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnection.java211 Protocol selectedProtocol = Protocol.HTTP_11;
213 selectedProtocol = Protocol.find(maybeProtocol); // Throws IOE on unknown.
216 if (selectedProtocol.spdyVariant) {
219 .protocol(selectedProtocol).build();
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DNewWebSocketChannelImpl.h133 virtual void didConnect(WebSocketHandle*, bool fail, const WebString& selectedProtocol, const WebString& extensions) OVERRIDE;
H A DNewWebSocketChannelImpl.cpp407 void NewWebSocketChannelImpl::didConnect(WebSocketHandle* handle, bool fail, const WebString& selectedProtocol, const WebString& extensions) argument
409 WTF_LOG(Network, "NewWebSocketChannelImpl %p didConnect(%p, %d, %s, %s)", this, handle, fail, selectedProtocol.utf8().data(), extensions.utf8().data());
418 m_client->didConnect(selectedProtocol, extensions);
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DMockWebServer.java336 ByteString selectedProtocol = Platform.get().getNpnSelectedProtocol(sslSocket);
337 protocol = Protocol.find(selectedProtocol);

Completed in 214 milliseconds