Index: net/http/http_cache_transaction.cc |
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc |
index ba42d163cbd151964421ddb2eb87a9313141d091..69655bdd010019a1bd5a80929d6009b6fb67fce0 100644 |
--- a/net/http/http_cache_transaction.cc |
+++ b/net/http/http_cache_transaction.cc |
@@ -533,6 +533,12 @@ void HttpCache::Transaction::SetPriority(RequestPriority priority) { |
network_trans_->SetPriority(priority_); |
} |
+void HttpCache::Transaction::SetWebSocketHandshakeStreamFactory( |
+ WebSocketHandshakeStreamBase::Factory* factory) { |
+ if (network_trans_) |
+ network_trans_->SetWebSocketHandshakeStreamFactory(factory); |
+} |
+ |
//----------------------------------------------------------------------------- |
void HttpCache::Transaction::DoCallback(int rv) { |