Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: net/http/http_network_transaction.cc

Issue 14813024: Introduce RequestWebSocketStream into HttpStreamFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a comment. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index b74b6717407445ab5133878e0a08c7fc454478b2..7ae2437095cf195e0b63a8e7c580a3daf158bf7a 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -425,6 +425,17 @@ void HttpNetworkTransaction::OnStreamReady(const SSLConfig& used_ssl_config,
OnIOComplete(OK);
}
+void HttpNetworkTransaction::OnSocketReady(const SSLConfig& used_ssl_config,
Adam Rice 2013/05/13 13:03:03 I think this implementation of OnSocketReady() and
yhirano 2013/05/14 05:43:53 You are right, done.
+ const ProxyInfo& used_proxy_info,
+ ClientSocketHandle* connection) {
+}
+
+void HttpNetworkTransaction::OnSpdySessionReady(
+ const SSLConfig& used_ssl_config,
+ const ProxyInfo& used_proxy_info,
+ SpdySession* session) {
+}
+
void HttpNetworkTransaction::OnStreamFailed(int result,
const SSLConfig& used_ssl_config) {
DCHECK_EQ(STATE_CREATE_STREAM_COMPLETE, next_state_);

Powered by Google App Engine
This is Rietveld 408576698